Method: Redis::Commands::Streams#xdel
- Defined in:
- lib/redis/commands/streams.rb
#xdel(key, *ids) ⇒ Integer
Delete entries by entry ids.
113 114 115 116 |
# File 'lib/redis/commands/streams.rb', line 113 def xdel(key, *ids) args = [:xdel, key].concat(ids.flatten) send_command(args) end |