rediscl v0.2.11 Rediscl.Query.Api View Source
Query api funcs
Link to this section Summary
Functions
Creates the zadd :eredis query list, based on the given arguments
Creates the zcard :eredis query list, based on the given arguments
Creates the zcount :eredis query list, based on the given arguments
Creates the zincrby :eredis query list, based on the given arguments
Creates the zinter :eredis query list, based on the given arguments
Creates the zinterstore :eredis query list, based on the given arguments
Creates the zlexcount :eredis query list, based on the given arguments
Creates the zrange :eredis query list, based on the given arguments
Creates the zrangebylex :eredis query list, based on the given arguments
Creates the zrangebyscore :eredis query list, based on the given arguments
Creates the zrank :eredis query list, based on the given arguments
Creates the zrem :eredis query list, based on the given arguments
Creates the zremrangebylex :eredis query list, based on the given arguments
Creates the zremrangebyrank :eredis query list, based on the given arguments
Creates the zremrangebyscore :eredis query list, based on the given arguments
Creates the zrevrange :eredis query list, based on the given arguments
Creates the zrevrangebylex :eredis query list, based on the given arguments
Creates the zrevrangebyscore :eredis query list, based on the given arguments
Creates the zrevrank :eredis query list, based on the given arguments
Creates the zscan :eredis query list, based on the given arguments
Creates the zscore :eredis query list, based on the given arguments
Creates the zunion :eredis query list, based on the given arguments
Creates the zunionstore :eredis query list, based on the given arguments
Link to this section Functions
append(key, value, opts \\ []) View Source
command(command) View Source
command(command, key_or_keys, opts \\ []) View Source
decr(key, opts \\ []) View Source
decr_by(key, decrement, opts \\ []) View Source
del(keys, opts \\ []) View Source
exists(key, opts \\ []) View Source
get(key, opts \\ []) View Source
get_range(key, start, stop, opts \\ []) View Source
get_set(key, value, opts \\ []) View Source
incr(key, opts \\ []) View Source
incr_by(key, value, opts \\ []) View Source
incr_by_float(key, value, opts \\ []) View Source
lpush(key, values, opts \\ []) View Source
lrange(key, start, stop, opts \\ []) View Source
lrem(key, count, value, opts \\ []) View Source
lset(key, index, value, opts \\ []) View Source
mget(keys, opts \\ []) View Source
mset(keys_and_values, opts \\ []) View Source
mset_nx(keys_and_values, opts \\ []) View Source
pset_ex(key, milisecond, value, opts \\ []) View Source
rpush(key, values, opts \\ []) View Source
sadd(key, values, opts \\ []) View Source
scard(key, opts \\ []) View Source
sdiff(keys, opts \\ []) View Source
sdiffstore(key, keys, opts \\ []) View Source
set(key, value, opts \\ []) View Source
set_ex(key, second, value, opts \\ []) View Source
set_nx(key, value, opts \\ []) View Source
set_range(key, offset, value, opts \\ []) View Source
sinter(keys, opts \\ []) View Source
sinterstore(key, keys, opts \\ []) View Source
sismember(key, value, opts \\ []) View Source
smembers(key, opts \\ []) View Source
smove(key_one, key_two, value, opts \\ []) View Source
spop(key, count \\ nil, opts \\ []) View Source
srandmember(key, count \\ nil, opts \\ []) View Source
srem(key, value_or_values, opts \\ []) View Source
sscan(key, values, opts \\ []) View Source
strlen(key, opts \\ []) View Source
sunion(keys, opts \\ []) View Source
sunionstore(key, keys, opts \\ []) View Source
zadd(key, score, value, opts \\ []) View Source
Creates the zadd :eredis query list, based on the given arguments.
zcard(key, opts \\ []) View Source
Creates the zcard :eredis query list, based on the given arguments.
zcount(key, min, max, opts \\ []) View Source
Creates the zcount :eredis query list, based on the given arguments.
zincrby(key, increment, value, opts \\ []) View Source
Creates the zincrby :eredis query list, based on the given arguments.
zinter(keys, opts \\ []) View Source
Creates the zinter :eredis query list, based on the given arguments.
zinterstore(key, keys, opts \\ []) View Source
Creates the zinterstore :eredis query list, based on the given arguments.
zlexcount(key, min, max, opts \\ []) View Source
Creates the zlexcount :eredis query list, based on the given arguments.
zrange(key, min, max, opts \\ []) View Source
Creates the zrange :eredis query list, based on the given arguments.
zrangebylex(key, min, max, opts \\ []) View Source
Creates the zrangebylex :eredis query list, based on the given arguments.
zrangebyscore(key, min, max, opts \\ []) View Source
Creates the zrangebyscore :eredis query list, based on the given arguments.
zrank(key, value, opts \\ []) View Source
Creates the zrank :eredis query list, based on the given arguments.
zrem(key, value, opts \\ []) View Source
Creates the zrem :eredis query list, based on the given arguments.
zremrangebylex(key, min, max, opts \\ []) View Source
Creates the zremrangebylex :eredis query list, based on the given arguments.
zremrangebyrank(key, min, max, opts \\ []) View Source
Creates the zremrangebyrank :eredis query list, based on the given arguments.
zremrangebyscore(key, min, max, opts \\ []) View Source
Creates the zremrangebyscore :eredis query list, based on the given arguments.
zrevrange(key, min, max, opts \\ []) View Source
Creates the zrevrange :eredis query list, based on the given arguments.
zrevrangebylex(key, max, min, opts \\ []) View Source
Creates the zrevrangebylex :eredis query list, based on the given arguments.
zrevrangebyscore(key, max, min, opts \\ []) View Source
Creates the zrevrangebyscore :eredis query list, based on the given arguments.
zrevrank(key, value, opts \\ []) View Source
Creates the zrevrank :eredis query list, based on the given arguments.
zscan(key, values, opts \\ []) View Source
Creates the zscan :eredis query list, based on the given arguments.
zscore(key, value, opts \\ []) View Source
Creates the zscore :eredis query list, based on the given arguments.
zunion(keys, opts \\ []) View Source
Creates the zunion :eredis query list, based on the given arguments.
zunionstore(key, keys, opts \\ []) View Source
Creates the zunionstore :eredis query list, based on the given arguments.