lib/redis_failover/client.rb in redis_failover-0.8.6 vs lib/redis_failover/client.rb in redis_failover-0.8.7
- old
+ new
@@ -69,14 +69,10 @@
:zscore
].freeze
# Unsupported Redis operations. These don't make sense in a client
# that abstracts the master/slave servers.
- UNSUPPORTED_OPS = Set[
- :select,
- :ttl,
- :dbsize,
- ].freeze
+ UNSUPPORTED_OPS = Set[:select, :dbsize].freeze
# Performance optimization: to avoid unnecessary method_missing calls,
# we proactively define methods that dispatch to the underlying redis
# calls.
Redis.public_instance_methods(false).each do |method|