Method: Conflow::Redis::SortedSetField#delete
- Defined in:
- lib/conflow/redis/sorted_set_field.rb
#delete(value) ⇒ Integer
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Remove element from the set.
44 45 46 |
# File 'lib/conflow/redis/sorted_set_field.rb', line 44 def delete(value) command :zrem, [key, value] end |