makif
makif

Reputation: 300

Is it possible to enable persistance for some part of the Redis data?

I want to use Redis RDB persistence, but I need persistency for only small part of the data. How can I configure Redis to take snapshot for some part of data. Is it possible or I need 2 different Redis DB?

Upvotes: 1

Views: 56

Answers (1)

sazzad
sazzad

Reputation: 6267

No, you can't do it. You'll need 2 different Redis instances.

Upvotes: 1

Related Questions