Reputation: 33
I have configured my redis cluster with the following config:
appendonly no
save ""
But I found out that my redis is taking a back up and has taken a backup recently. My use case doesn't require any rdb save to be done. Am I missing some thing?
Upvotes: 2
Views: 701
Reputation: 96
For disable all backups in redis go to redis.conf file do the following:
save
directives, by default there are three of them.save 900 1
save 300 10
save 60 10000
appendonly
to no
)Upvotes: 1