Using a Ruby client connecting to a Redis instance, how do I check the persistence set on this Redis instance?
gem 'redis'
client = Redis.new
client.persistence == 'AOF' ...?
Using a Ruby client connecting to a Redis instance, how do I check the persistence set on this Redis instance?
gem 'redis'
client = Redis.new
client.persistence == 'AOF' ...?