Pradip Bhuvani
Pradip Bhuvani

Reputation: 437

Is there any way to pause redis server?

We figure out our node application with redis server. But the problem is that when we restart node server we can not get any key expire from redis during server is not running so we can not do any operation on particular key.

so please help me if any way to solve this problem

Upvotes: 3

Views: 1775

Answers (1)

Md Nazmul Hossain
Md Nazmul Hossain

Reputation: 2933

You can try this : redis.io/commands/client-pause Command should be

CLIENT PAUSE timeout

Upvotes: 7

Related Questions