Lines Matching defs:key

136     QueuedRedis& del(const StringView &key) {  in del()
150 QueuedRedis& dump(const StringView &key) { in dump()
154 QueuedRedis& exists(const StringView &key) { in exists()
168 QueuedRedis& expire(const StringView &key, long long timeout) { in expire()
172 QueuedRedis& expire(const StringView &key, in expire()
177 QueuedRedis& expireat(const StringView &key, long long timestamp) { in expireat()
181 QueuedRedis& expireat(const StringView &key, in expireat()
191 QueuedRedis& move(const StringView &key, long long db) { in move()
195 QueuedRedis& persist(const StringView &key) { in persist()
199 QueuedRedis& pexpire(const StringView &key, long long timeout) { in pexpire()
203 QueuedRedis& pexpire(const StringView &key, in pexpire()
208 QueuedRedis& pexpireat(const StringView &key, long long timestamp) { in pexpireat()
212 QueuedRedis& pexpireat(const StringView &key, in pexpireat()
218 QueuedRedis& pttl(const StringView &key) { in pttl()
226 QueuedRedis& rename(const StringView &key, const StringView &newkey) { in rename()
230 QueuedRedis& renamenx(const StringView &key, const StringView &newkey) { in renamenx()
270 QueuedRedis& touch(const StringView &key) { in touch()
284 QueuedRedis& ttl(const StringView &key) { in ttl()
288 QueuedRedis& type(const StringView &key) { in type()
292 QueuedRedis& unlink(const StringView &key) { in unlink()
316 QueuedRedis& append(const StringView &key, const StringView &str) { in append()
328 const StringView &key) { in bitop()
354 QueuedRedis& decr(const StringView &key) { in decr()
358 QueuedRedis& decrby(const StringView &key, long long decrement) { in decrby()
362 QueuedRedis& get(const StringView &key) { in get()
366 QueuedRedis& getbit(const StringView &key, long long offset) { in getbit()
370 QueuedRedis& getrange(const StringView &key, long long start, long long end) { in getrange()
374 QueuedRedis& getset(const StringView &key, const StringView &val) { in getset()
378 QueuedRedis& incr(const StringView &key) { in incr()
382 QueuedRedis& incrby(const StringView &key, long long increment) { in incrby()
386 QueuedRedis& incrbyfloat(const StringView &key, double increment) { in incrbyfloat()
420 QueuedRedis& psetex(const StringView &key, in psetex()
426 QueuedRedis& psetex(const StringView &key, in psetex()
441 QueuedRedis& setex(const StringView &key, in setex()
447 QueuedRedis& setex(const StringView &key, in setex()
453 QueuedRedis& setnx(const StringView &key, const StringView &val) { in setnx()
457 QueuedRedis& setrange(const StringView &key, in setrange()
463 QueuedRedis& strlen(const StringView &key) { in strlen()
469 QueuedRedis& blpop(const StringView &key, long long timeout) { in blpop()
501 QueuedRedis& brpop(const StringView &key, long long timeout) { in brpop()
545 QueuedRedis& lindex(const StringView &key, long long index) { in lindex()
549 QueuedRedis& linsert(const StringView &key, in linsert()
556 QueuedRedis& llen(const StringView &key) { in llen()
560 QueuedRedis& lpop(const StringView &key) { in lpop()
564 QueuedRedis& lpush(const StringView &key, const StringView &val) { in lpush()
569 QueuedRedis& lpush(const StringView &key, Input first, Input last) { in lpush()
574 QueuedRedis& lpush(const StringView &key, std::initializer_list<T> il) { in lpush()
578 QueuedRedis& lpushx(const StringView &key, const StringView &val) { in lpushx()
582 QueuedRedis& lrange(const StringView &key, in lrange()
588 QueuedRedis& lrem(const StringView &key, long long count, const StringView &val) { in lrem()
592 QueuedRedis& lset(const StringView &key, long long index, const StringView &val) { in lset()
596 QueuedRedis& ltrim(const StringView &key, long long start, long long stop) { in ltrim()
600 QueuedRedis& rpop(const StringView &key) { in rpop()
608 QueuedRedis& rpush(const StringView &key, const StringView &val) { in rpush()
613 QueuedRedis& rpush(const StringView &key, Input first, Input last) { in rpush()
618 QueuedRedis& rpush(const StringView &key, std::initializer_list<T> il) { in rpush()
622 QueuedRedis& rpushx(const StringView &key, const StringView &val) { in rpushx()
628 QueuedRedis& hdel(const StringView &key, const StringView &field) { in hdel()
633 QueuedRedis& hdel(const StringView &key, Input first, Input last) { in hdel()
638 QueuedRedis& hdel(const StringView &key, std::initializer_list<T> il) { in hdel()
642 QueuedRedis& hexists(const StringView &key, const StringView &field) { in hexists()
646 QueuedRedis& hget(const StringView &key, const StringView &field) { in hget()
650 QueuedRedis& hgetall(const StringView &key) { in hgetall()
654 QueuedRedis& hincrby(const StringView &key, in hincrby()
660 QueuedRedis& hincrbyfloat(const StringView &key, in hincrbyfloat()
666 QueuedRedis& hkeys(const StringView &key) { in hkeys()
670 QueuedRedis& hlen(const StringView &key) { in hlen()
675 QueuedRedis& hmget(const StringView &key, Input first, Input last) { in hmget()
680 QueuedRedis& hmget(const StringView &key, std::initializer_list<T> il) { in hmget()
685 QueuedRedis& hmset(const StringView &key, Input first, Input last) { in hmset()
690 QueuedRedis& hmset(const StringView &key, std::initializer_list<T> il) { in hmset()
694 QueuedRedis& hscan(const StringView &key, in hscan()
701 QueuedRedis& hscan(const StringView &key, in hscan()
707 QueuedRedis& hscan(const StringView &key, in hscan()
713 QueuedRedis& hscan(const StringView &key, in hscan()
718 QueuedRedis& hset(const StringView &key, const StringView &field, const StringView &val) { in hset()
722 QueuedRedis& hset(const StringView &key, const std::pair<StringView, StringView> &item) { in hset()
726 QueuedRedis& hsetnx(const StringView &key, const StringView &field, const StringView &val) { in hsetnx()
730 QueuedRedis& hsetnx(const StringView &key, const std::pair<StringView, StringView> &item) { in hsetnx()
734 QueuedRedis& hstrlen(const StringView &key, const StringView &field) { in hstrlen()
738 QueuedRedis& hvals(const StringView &key) { in hvals()
744 QueuedRedis& sadd(const StringView &key, const StringView &member) { in sadd()
749 QueuedRedis& sadd(const StringView &key, Input first, Input last) { in sadd()
754 QueuedRedis& sadd(const StringView &key, std::initializer_list<T> il) { in sadd()
758 QueuedRedis& scard(const StringView &key) { in scard()
772 QueuedRedis& sdiffstore(const StringView &destination, const StringView &key) { in sdiffstore()
798 QueuedRedis& sinterstore(const StringView &destination, const StringView &key) { in sinterstore()
814 QueuedRedis& sismember(const StringView &key, const StringView &member) { in sismember()
818 QueuedRedis& smembers(const StringView &key) { in smembers()
828 QueuedRedis& spop(const StringView &key) { in spop()
832 QueuedRedis& spop(const StringView &key, long long count) { in spop()
836 QueuedRedis& srandmember(const StringView &key) { in srandmember()
840 QueuedRedis& srandmember(const StringView &key, long long count) { in srandmember()
844 QueuedRedis& srem(const StringView &key, const StringView &member) { in srem()
849 QueuedRedis& srem(const StringView &key, Input first, Input last) { in srem()
854 QueuedRedis& srem(const StringView &key, std::initializer_list<T> il) { in srem()
858 QueuedRedis& sscan(const StringView &key, in sscan()
865 QueuedRedis& sscan(const StringView &key, in sscan()
871 QueuedRedis& sscan(const StringView &key, in sscan()
877 QueuedRedis& sscan(const StringView &key, in sscan()
892 QueuedRedis& sunionstore(const StringView &destination, const StringView &key) { in sunionstore()
908 QueuedRedis& bzpopmax(const StringView &key, long long timeout) { in bzpopmax()
940 QueuedRedis& bzpopmin(const StringView &key, long long timeout) { in bzpopmin()
990 QueuedRedis& zcard(const StringView &key) { in zcard()
995 QueuedRedis& zcount(const StringView &key, const Interval &interval) { in zcount()
999 QueuedRedis& zincrby(const StringView &key, double increment, const StringView &member) { in zincrby()
1004 const StringView &key, in zinterstore()
1025 QueuedRedis& zlexcount(const StringView &key, const Interval &interval) { in zlexcount()
1029 QueuedRedis& zpopmax(const StringView &key) { in zpopmax()
1033 QueuedRedis& zpopmax(const StringView &key, long long count) { in zpopmax()
1037 QueuedRedis& zpopmin(const StringView &key) { in zpopmin()
1041 QueuedRedis& zpopmin(const StringView &key, long long count) { in zpopmin()
1059 QueuedRedis& zrangebylex(const StringView &key, in zrangebylex()
1066 QueuedRedis& zrangebylex(const StringView &key, const Interval &interval) { in zrangebylex()
1087 QueuedRedis& zrank(const StringView &key, const StringView &member) { in zrank()
1091 QueuedRedis& zrem(const StringView &key, const StringView &member) { in zrem()
1096 QueuedRedis& zrem(const StringView &key, Input first, Input last) { in zrem()
1101 QueuedRedis& zrem(const StringView &key, std::initializer_list<T> il) { in zrem()
1106 QueuedRedis& zremrangebylex(const StringView &key, const Interval &interval) { in zremrangebylex()
1110 QueuedRedis& zremrangebyrank(const StringView &key, long long start, long long stop) { in zremrangebyrank()
1115 QueuedRedis& zremrangebyscore(const StringView &key, const Interval &interval) { in zremrangebyscore()
1128 QueuedRedis& zrevrangebylex(const StringView &key, in zrevrangebylex()
1135 QueuedRedis& zrevrangebylex(const StringView &key, const Interval &interval) { in zrevrangebylex()
1156 QueuedRedis& zrevrank(const StringView &key, const StringView &member) { in zrevrank()
1160 QueuedRedis& zscan(const StringView &key, in zscan()
1167 QueuedRedis& zscan(const StringView &key, in zscan()
1173 QueuedRedis& zscan(const StringView &key, in zscan()
1179 QueuedRedis& zscan(const StringView &key, in zscan()
1184 QueuedRedis& zscore(const StringView &key, const StringView &member) { in zscore()
1189 const StringView &key, in zunionstore()
1211 QueuedRedis& pfadd(const StringView &key, const StringView &element) { in pfadd()
1216 QueuedRedis& pfadd(const StringView &key, Input first, Input last) { in pfadd()
1221 QueuedRedis& pfadd(const StringView &key, std::initializer_list<T> il) { in pfadd()
1225 QueuedRedis& pfcount(const StringView &key) { in pfcount()
1239 QueuedRedis& pfmerge(const StringView &destination, const StringView &key) { in pfmerge()
1255 QueuedRedis& geoadd(const StringView &key, in geoadd()
1261 QueuedRedis& geoadd(const StringView &key, in geoadd()
1268 QueuedRedis& geoadd(const StringView &key, std::initializer_list<T> il) { in geoadd()
1280 QueuedRedis& geohash(const StringView &key, Input first, Input last) { in geohash()
1285 QueuedRedis& geohash(const StringView &key, std::initializer_list<T> il) { in geohash()
1290 QueuedRedis& geopos(const StringView &key, Input first, Input last) { in geopos()
1295 QueuedRedis& geopos(const StringView &key, std::initializer_list<T> il) { in geopos()
1303 QueuedRedis& georadius(const StringView &key, in georadius()
1326 QueuedRedis& georadius(const StringView &key, in georadius()
1347 QueuedRedis& georadiusbymember(const StringView &key, in georadiusbymember()
1367 QueuedRedis& georadiusbymember(const StringView &key, in georadiusbymember()
1432 QueuedRedis& xack(const StringView &key, const StringView &group, const StringView &id) { in xack()
1437 QueuedRedis& xack(const StringView &key, const StringView &group, Input first, Input last) { in xack()
1442 QueuedRedis& xack(const StringView &key, const StringView &group, std::initializer_list<T> il) { in xack()
1447 QueuedRedis& xadd(const StringView &key, const StringView &id, Input first, Input last) { in xadd()
1452 QueuedRedis& xadd(const StringView &key, const StringView &id, std::initializer_list<T> il) { in xadd()
1475 QueuedRedis& xclaim(const StringView &key, in xclaim()
1484 QueuedRedis& xclaim(const StringView &key, in xclaim()
1500 QueuedRedis& xclaim(const StringView &key, in xclaim()
1508 QueuedRedis& xdel(const StringView &key, const StringView &id) { in xdel()
1513 QueuedRedis& xdel(const StringView &key, Input first, Input last) { in xdel()
1518 QueuedRedis& xdel(const StringView &key, std::initializer_list<T> il) { in xdel()
1529 QueuedRedis& xgroup_setid(const StringView &key, in xgroup_setid()
1535 QueuedRedis& xgroup_destroy(const StringView &key, const StringView &group) { in xgroup_destroy()
1539 QueuedRedis& xgroup_delconsumer(const StringView &key, in xgroup_delconsumer()
1545 QueuedRedis& xlen(const StringView &key) { in xlen()
1549 QueuedRedis& xpending(const StringView &key, const StringView &group) { in xpending()
1553 QueuedRedis& xpending(const StringView &key, in xpending()
1561 QueuedRedis& xpending(const StringView &key, in xpending()
1570 QueuedRedis& xrange(const StringView &key, in xrange()
1576 QueuedRedis& xrange(const StringView &key, in xrange()
1583 QueuedRedis& xread(const StringView &key, const StringView &id, long long count) { in xread()
1587 QueuedRedis& xread(const StringView &key, const StringView &id) { in xread()
1605 QueuedRedis& xread(const StringView &key, in xread()
1612 QueuedRedis& xread(const StringView &key, in xread()
1639 const StringView &key, in xreadgroup()
1648 const StringView &key, in xreadgroup()
1689 const StringView &key, in xreadgroup()
1706 const StringView &key, in xreadgroup()
1715 const StringView &key, in xreadgroup()
1764 QueuedRedis& xrevrange(const StringView &key, in xrevrange()
1770 QueuedRedis& xrevrange(const StringView &key, in xrevrange()