exredis v0.3.0 Exredis.Api View Source

High-level API

Link to this section Summary

Functions

Link to this section Functions

Link to this function append(client, key, value) View Source
Link to this function bitcount(key, start, end) View Source
Link to this function bitcount(client, key, start, end) View Source
Link to this function bitop(operation, destkey, key) View Source
Link to this function bitop(client, operation, destkey, key) View Source
Link to this function blpop(client, key, timeout) View Source
Link to this function brpop(client, key, timeout) View Source
Link to this function brpoplpush(source, destination, timeout) View Source
Link to this function brpoplpush(client, source, destination, timeout) View Source
Link to this function decrby(client, key, decrement) View Source
Link to this function eval(script, numkeys, keys, args) View Source
Link to this function eval(client, script, numkeys, keys, args) View Source
Link to this function evalsha(scriptsha, numkeys, keys, args) View Source
Link to this function evalsha(client, scriptsha, numkeys, keys, args) View Source
Link to this function expire(client, key, seconds) View Source
Link to this function expireat(key, timestamp) View Source
Link to this function expireat(client, key, timestamp) View Source
Link to this function getbit(client, key, offset) View Source
Link to this function getrange(key, start, end) View Source
Link to this function getrange(client, key, start, end) View Source
Link to this function getset(client, key, value) View Source
Link to this function hdel(client, key, field) View Source
Link to this function hexists(client, key, field) View Source
Link to this function hget(client, key, field) View Source
Link to this function hincrby(key, field, increment) View Source
Link to this function hincrby(client, key, field, increment) View Source
Link to this function hincrbyfloat(key, field, increment) View Source
Link to this function hincrbyfloat(client, key, field, increment) View Source
Link to this function hmget(client, key, field) View Source
Link to this function hmset(client, key, vals) View Source
Link to this function hset(client, key, field, value) View Source
Link to this function hsetnx(key, field, value) View Source
Link to this function hsetnx(client, key, field, value) View Source
Link to this function incrby(client, key, increment) View Source
Link to this function incrbyfloat(key, increment) View Source
Link to this function incrbyfloat(client, key, increment) View Source
Link to this function lindex(client, key, index) View Source
Link to this function linsert(key, before_after, pivot, value) View Source
Link to this function linsert(client, key, before_after, pivot, value) View Source
Link to this function lpush(client, key, value) View Source
Link to this function lpushx(client, key, value) View Source
Link to this function lrange(key, start, stop) View Source
Link to this function lrange(client, key, start, stop) View Source
Link to this function lrem(client, key, count, value) View Source
Link to this function lset(client, key, index, value) View Source
Link to this function ltrim(client, key, start, stop) View Source
Link to this function msetnx(client, key, value) View Source
Link to this function pexpire(key, milliseconds) View Source
Link to this function pexpire(client, key, milliseconds) View Source
Link to this function pexpireat(key, milli_timestamp) View Source
Link to this function pexpireat(client, key, milli_timestamp) View Source
Link to this function psetex(key, milliseconds, value) View Source
Link to this function psetex(client, key, milliseconds, value) View Source
Link to this function psubscribe(client, pattern) View Source
Link to this function publish(channel, message) View Source
Link to this function publish(client, channel, message) View Source
Link to this function punsubscribe(client, pattern) View Source
Link to this function rename(client, key, newkey) View Source
Link to this function renamenx(client, key, newkey) View Source
Link to this function restore(key, ttl, serialized_value) View Source
Link to this function restore(client, key, ttl, serialized_value) View Source
Link to this function rpoplpush(source, destination) View Source
Link to this function rpoplpush(client, source, destination) View Source
Link to this function rpush(client, key, value) View Source
Link to this function rpushx(client, key, value) View Source
Link to this function sadd(client, key, member) View Source
Link to this function script_exists(client, shasum) View Source
Link to this function script_load(client, script) View Source
Link to this function sdiffstore(destination, key) View Source
Link to this function sdiffstore(client, destination, key) View Source
Link to this function setbit(key, offset, value) View Source
Link to this function setbit(client, key, offset, value) View Source
Link to this function setex(key, seconds, value) View Source
Link to this function setex(client, key, seconds, value) View Source
Link to this function setnx(client, key, value) View Source
Link to this function setrange(key, offset, value) View Source
Link to this function setrange(client, key, offset, value) View Source
Link to this function sinterstore(destination, key) View Source
Link to this function sinterstore(client, destination, key) View Source
Link to this function sismember(client, key, member) View Source
Link to this function slaveof(client, host, port) View Source
Link to this function slowlog(client, subcommand) View Source
Link to this function smove(source, destination, member) View Source
Link to this function smove(client, source, destination, member) View Source
Link to this function srandmember(client, key) View Source
Link to this function srem(client, key, member) View Source
Link to this function subscribe(client, channel) View Source
Link to this function sunionstore(destination, key) View Source
Link to this function sunionstore(client, destination, key) View Source
Link to this function unsubscribe(client, channel) View Source
Link to this function zadd(key, score, member) View Source
Link to this function zadd(client, key, score, member) View Source
Link to this function zcount(client, key, min, max) View Source
Link to this function zincrby(key, increment, member) View Source
Link to this function zincrby(client, key, increment, member) View Source
Link to this function zinterstore(destination, numkeys, key) View Source
Link to this function zinterstore(client, destination, numkeys, key) View Source
Link to this function zrange(key, start, stop) View Source
Link to this function zrange(client, key, start, stop) View Source
Link to this function zrangebyscore(key, start, stop) View Source
Link to this function zrangebyscore(client, key, start, stop) View Source
Link to this function zrank(client, key, member) View Source
Link to this function zrem(client, key, member) View Source
Link to this function zremrangebyrank(key, start, stop) View Source
Link to this function zremrangebyrank(client, key, start, stop) View Source
Link to this function zremrangebyscore(key, min, max) View Source
Link to this function zremrangebyscore(client, key, min, max) View Source
Link to this function zrevrange(key, start, stop) View Source
Link to this function zrevrange(client, key, start, stop) View Source
Link to this function zrevrangebyscore(key, min, max) View Source
Link to this function zrevrangebyscore(client, key, min, max) View Source
Link to this function zrevrank(client, key, member) View Source
Link to this function zscore(client, key, member) View Source
Link to this function zunionstore(destination, key) View Source
Link to this function zunionstore(client, destination, key) View Source