2

Is there a way to execute a command in Redis, where you supply a server-side timeout?

For example, I want to execute a command that can take more than 3 sec. In that case, I would want that the Redis server will stop the execution of the command after 3 sec (with no correlation to the client timeout).

Yoav Abadi
  • 403
  • 7
  • 16

1 Answers1

1

NO.

You can do if and only if the command is made that way, e.g. BLPOP command.

sazzad
  • 5,740
  • 6
  • 25
  • 42