## Description Fixes rubocop for alfred.rb file on develop ## Type of change - [x] Bug fix (non-breaking change which fixes an issue) ## Checklist: - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented on my code, particularly in hard-to-understand areas - [ ] I have made corresponding changes to the documentation - [ ] My changes generate no new warnings - [ ] I have added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged and published in downstream modules
165 lines
4.4 KiB
Ruby
165 lines
4.4 KiB
Ruby
# refer : https://redis.io/commands
|
|
|
|
module Redis::Alfred
|
|
include Redis::RedisKeys
|
|
|
|
class << self
|
|
# key operations
|
|
|
|
# set a value in redis
|
|
def set(key, value, nx: false, ex: false) # rubocop:disable Naming/MethodParameterName
|
|
$alfred.with { |conn| conn.set(key, value, nx: nx, ex: ex) }
|
|
end
|
|
|
|
# set a key with expiry period
|
|
# TODO: Deprecate this method, use set with ex: 1.day instead
|
|
def setex(key, value, expiry = 1.day)
|
|
$alfred.with { |conn| conn.setex(key, expiry, value) }
|
|
end
|
|
|
|
def get(key)
|
|
$alfred.with { |conn| conn.get(key) }
|
|
end
|
|
|
|
def with(&)
|
|
$alfred.with(&)
|
|
end
|
|
|
|
def delete(key)
|
|
$alfred.with { |conn| conn.del(key) }
|
|
end
|
|
|
|
# atomic compare-and-delete (release a lock only if you still own it); WATCH/MULTI
|
|
# aborts the delete if the key changes between the check and the delete.
|
|
def delete_if_equals(key, expected_value)
|
|
$alfred.with do |conn|
|
|
conn.watch(key) do
|
|
next conn.unwatch unless conn.get(key) == expected_value
|
|
|
|
conn.multi { |transaction| transaction.del(key) }
|
|
end
|
|
end
|
|
end
|
|
|
|
# increment a key by 1. throws error if key value is incompatible
|
|
# sets key to 0 before operation if key doesn't exist
|
|
def incr(key)
|
|
$alfred.with { |conn| conn.incr(key) }
|
|
end
|
|
|
|
def exists?(key)
|
|
$alfred.with { |conn| conn.exists?(key) }
|
|
end
|
|
|
|
# set expiry on a key in seconds
|
|
def expire(key, seconds)
|
|
$alfred.with { |conn| conn.expire(key, seconds) }
|
|
end
|
|
|
|
# get expiry of a key in seconds
|
|
def ttl(key)
|
|
$alfred.with { |conn| conn.ttl(key) }
|
|
end
|
|
|
|
# scan keys matching a pattern
|
|
def scan_each(match: nil, count: 100, &)
|
|
$alfred.with do |conn|
|
|
conn.scan_each(match: match, count: count, &)
|
|
end
|
|
end
|
|
|
|
# count keys matching a pattern
|
|
def keys_count(pattern)
|
|
count = 0
|
|
scan_each(match: pattern) { count += 1 }
|
|
count
|
|
end
|
|
|
|
# list operations
|
|
|
|
def llen(key)
|
|
$alfred.with { |conn| conn.llen(key) }
|
|
end
|
|
|
|
def lrange(key, start_index = 0, end_index = -1)
|
|
$alfred.with { |conn| conn.lrange(key, start_index, end_index) }
|
|
end
|
|
|
|
def rpop(key)
|
|
$alfred.with { |conn| conn.rpop(key) }
|
|
end
|
|
|
|
def lpush(key, values)
|
|
$alfred.with { |conn| conn.lpush(key, values) }
|
|
end
|
|
|
|
def rpoplpush(source, destination)
|
|
$alfred.with { |conn| conn.rpoplpush(source, destination) }
|
|
end
|
|
|
|
def lrem(key, value, count = 0)
|
|
$alfred.with { |conn| conn.lrem(key, count, value) }
|
|
end
|
|
|
|
def pipelined(&)
|
|
$alfred.with { |conn| conn.pipelined(&) }
|
|
end
|
|
|
|
# hash operations
|
|
|
|
# add a key value to redis hash
|
|
def hset(key, field, value)
|
|
$alfred.with { |conn| conn.hset(key, field, value) }
|
|
end
|
|
|
|
# get value from redis hash
|
|
def hget(key, field)
|
|
$alfred.with { |conn| conn.hget(key, field) }
|
|
end
|
|
|
|
# get values of multiple keys from redis hash
|
|
def hmget(key, fields)
|
|
$alfred.with { |conn| conn.hmget(key, *fields) }
|
|
end
|
|
|
|
# sorted set operations
|
|
|
|
# add score and value for a key
|
|
# Modern Redis syntax: zadd(key, [[score, member], ...])
|
|
def zadd(key, score, value = nil)
|
|
# New syntax: score is an array of [score, member] pairs; old syntax: discrete score/value
|
|
pairs = value.nil? && score.is_a?(Array) ? score : [[score, value]]
|
|
$alfred.with { |conn| conn.zadd(key, pairs) }
|
|
end
|
|
|
|
# get score of a value for key
|
|
def zscore(key, value)
|
|
$alfred.with { |conn| conn.zscore(key, value) }
|
|
end
|
|
|
|
# count members in a sorted set with scores within the given range
|
|
def zcount(key, min_score, max_score)
|
|
$alfred.with { |conn| conn.zcount(key, min_score, max_score) }
|
|
end
|
|
|
|
# get the number of members in a sorted set
|
|
def zcard(key)
|
|
$alfred.with { |conn| conn.zcard(key) }
|
|
end
|
|
|
|
# get values by score
|
|
def zrangebyscore(key, range_start, range_end, with_scores: false, limit: nil)
|
|
options = {}
|
|
options[:with_scores] = with_scores if with_scores
|
|
options[:limit] = limit if limit
|
|
$alfred.with { |conn| conn.zrangebyscore(key, range_start, range_end, **options) }
|
|
end
|
|
|
|
# remove values by score
|
|
# exclusive score is specified by prefixing (
|
|
def zremrangebyscore(key, range_start, range_end)
|
|
$alfred.with { |conn| conn.zremrangebyscore(key, range_start, range_end) }
|
|
end
|
|
end
|
|
end
|