class Sideroo::SortedSet
Public Instance Methods
zinterstore(destination, *other_keys)
click to toggle source
# File lib/sideroo/types/sorted_set.rb, line 27 def zinterstore(destination, *other_keys) redis_client.zinterstore(destination, key, *other_keys) end
zinterstore!(*other_keys)
click to toggle source
Use `self.key` as destination
# File lib/sideroo/types/sorted_set.rb, line 32 def zinterstore!(*other_keys) redis_client.zinterstore(key, *other_keys) end
zunionstore(destination, *other_keys)
click to toggle source
# File lib/sideroo/types/sorted_set.rb, line 36 def zunionstore(destination, *other_keys) redis_client.zunionstore(destination, key, *other_keys) end
zunionstore!(*other_keys)
click to toggle source
Use `self.key` as destination
# File lib/sideroo/types/sorted_set.rb, line 41 def zunionstore!(*other_keys) redis_client.zunionstore(key, *other_keys) end