2a34255e0b
Co-authored-by: Subin <subinthattaparambil@gmail.com> Co-authored-by: Manoj <manojmj92@gmail.com> Co-authored-by: Nithin <webofnithin@gmail.com>
19 lines
333 B
Ruby
19 lines
333 B
Ruby
module Redis::Alfred
|
|
class << self
|
|
def rpoplpush(source, destination)
|
|
$alfred.rpoplpush(source, destination)
|
|
end
|
|
|
|
def lpush(key,value)
|
|
$alfred.lpush(key,value)
|
|
end
|
|
|
|
def delete(key)
|
|
$alfred.del(key)
|
|
end
|
|
|
|
def lrem(key,value,count=0)
|
|
$alfred.lrem(key,count,value)
|
|
end
|
|
end
|
|
end
|