rediscl v0.2.3 Rediscl.Query.Api View Source

Query api funcs

Link to this section Summary

Link to this section Functions

Link to this function

append(key, value) View Source
append(String.t(), String.t()) :: List.t()

Link to this function

command(command) View Source
command(String.t()) :: List.t()

Link to this function

command(command, key) View Source
command(String.t(), String.t()) :: List.t()

Link to this function

decr_by(key, decrement) View Source
decr_by(String.t(), Integer.t()) :: List.t()

Link to this function

get_range(key, start, stop) View Source
get_range(String.t(), Integer.t(), Integer.t()) :: List.t()

Link to this function

get_set(key, value) View Source
get_set(String.t(), String.t()) :: List.t()

Link to this function

incr_by(key, value) View Source
incr_by(String.t(), Integer.t()) :: List.t()

Link to this function

incr_by_float(key, value) View Source
incr_by_float(String.t(), String.t()) :: List.t()

Link to this function

lpush(key, values) View Source
lpush(String.t(), List.t()) :: List.t()

Link to this function

lrange(key, start, stop) View Source
lrange(String.t(), Integer.t(), Integer.t()) :: List.t()

Link to this function

lrem(key, count, value) View Source
lrem(String.t(), Integer.t(), String.t()) :: List.t()

Link to this function

lset(key, index, value) View Source
lset(String.t(), Integer.t(), String.t()) :: List.t()

Link to this function

mset(key_and_values) View Source
mset(List.t()) :: List.t()

Link to this function

mset_nx(keys_and_values) View Source
mset_nx(List.t()) :: List.t()

Link to this function

pset_ex(key, milisecond, value) View Source
pset_ex(String.t(), Integer.t(), String.t() | Integer.t()) :: List.t()

Link to this function

rpush(key, values) View Source
rpush(String.t(), List.t()) :: List.t()

Link to this function

sdiffstore(key, keys) View Source
sdiffstore(String.t(), List.t()) :: List.t()

Link to this function

set_ex(key, second, value) View Source
set_ex(String.t(), Integer.t(), String.t() | Integer.t()) :: List.t()

Link to this function

set_range(key, offset, value) View Source
set_range(String.t(), Integer.t(), String.t()) :: List.t()

Link to this function

sinterstore(key, keys) View Source
sinterstore(String.t(), List.t()) :: List.t()

Link to this function

sismember(key, value) View Source
sismember(String.t(), String.t()) :: List.t()

Link to this function

smove(key_one, key_two, value) View Source
smove(String.t(), String.t(), String.t()) :: List.t()

Link to this function

srandmember(key) View Source
srandmember(String.t()) :: List.t()

Link to this function

srandmember(key, count) View Source
srandmember(String.t(), Integer.t()) :: List.t()

Link to this function

srem(key, values) View Source
srem(String.t(), List.t()) :: List.t()
srem(String.t(), String.t()) :: List.t()

Link to this function

sunionstore(key, keys) View Source
sunionstore(String.t(), List.t()) :: List.t()