Method: Redis#brpop
- Defined in:
- lib/redis.rb
#brpop(*args) ⇒ nil, [String, String]
Remove and get the last element in a list, or block until one is available.
987 988 989 |
# File 'lib/redis.rb', line 987 def brpop(*args) _bpop(:brpop, args) end |