An experimental implementation of redis client for deno
needs --allow-net
privilege
Stateless Commands
import {connect} from "https://denopkg.com/keroxp/deno-redis/redis.ts"
const redis = await connect("127.0.0.1:6379");
const ok = await redis.set("hoge","fuga")
const fuga = await redis.get("hoge");
PubSub
const sub = await redis.subscribe("channel");
(async function() {
for await (const {channel, message} of sub.receive()) {
// on message
}
})()
https://redis.io/topics/pipelining
const redis = await connect("127.0.0.1:6379");
const pl = redis.pipeline();
await Promise.all([
pl.ping(),
pl.ping(),
pl.set("set1", "value1"),
pl.set("set2", "value2"),
pl.mget("set1", "set2"),
pl.del("set1"),
pl.del("set2")
]);
const replies = await pl.flush();
We recommend to use tx()
instead of multi()/exec()
for transactional operation.
MULTI/EXEC
are potentially stateful operation so that operation's atomicity is guaranteed but redis's state may change between MULTI and EXEC.
WATCH
is designed for these problems. You can ignore it by using TxPipeline because pipelined MULTI/EXEC commands are strictly executed in order at the time and no changes will happen during execution.
See detail https://redis.io/topics/transactions
const tx = redis.tx();
await Promise.all([
tx.set("a", "aa"),
tx.set("b", "bb"),
tx.del("c"),
])
await tx.flush();
// MULTI
// SET a aa
// SET b bb
// DEL c
// EXEC
- AUTH
- ECHO
- PING
- QUIT
- SELECT
- SWAPDB
- DEL
- DUMP
- EXISTS
- EXPIRE
- EXPIREAT
- KEYS
- MIGRATE
- MOVE
- OBJECT
- PERSIST
- PEXPIRE
- PEXPIREAT
- PTTL
- RANDOMKEY
- RENAME
- RENAMENX
- RESTORE
- SORT
- TOUCH
- TTL
- TYPE
- UNLINK
- WAIT
- SCAN
- APPEND
- BITCOUNT
- BITFIELD
- BITOP
- BITPOS
- DECR
- DECRBY
- GET
- GETBIT
- GETRANGE
- GETSET
- INCR
- INCRBY
- INCRBYFLOAT
- MGET
- MSET
- MSETNX
- PSETEX
- SET
- SETBIT
- SETEX
- SETNX
- SETRANGE
- STRLEN
- BLPOP
- BRPOP
- BRPOPLPUSH
- LINDEX
- LINSERT
- LLEN
- LPOP
- LPUSH
- LPUSHX
- LRANGE
- LREM
- LSET
- LTRIM
- RPOP
- RPOPLPUSH
- RPUSH
- RPUSHX
- SADD
- SCARD
- SDIFF
- SDIFFSTORE
- SINTER
- SINTERSTORE
- SISMEMBER
- SMEMBERS
- SMOVE
- SPOP
- SRANDMEMBER
- SREM
- BZPOPMIN
- BZPOPMAX
- ZADD
- ZCARD
- ZCOUNT
- ZINCRBY
- ZINTERSTORE
- ZLEXCOUNT
- ZPOPMAX
- ZPOPMIN
- ZRANGE
- ZRANGEBYLEX
- ZREVRANGEBYLEX
- ZRANGEBYSCORE
- ZRANK
- ZREM
- ZREMRANGEBYLEX
- ZREMRANGEBYRANK
- ZREMRANGEBYSCORE
- ZREVRANGE
- ZREVRANGEBYSCORE
- ZREVRANK
- ZSCORE
- ZUNIONSTORE
- ZSCAN
- HDEL
- HEXISTS
- HGET
- HGETALL
- HINCRBY
- HINCRBYFLOAT
- HKEYS
- HLEN
- HMGET
- HMSET
- HSET
- HSETNX
- HSTRLEN
- HVALS
- HSCAN
- GEOADD
- GEOADD
- GEOHASH
- GEOPOS
- GEODIST
- GEORADIUS
- GEORADIUSBYMEMBER
WIP
WIP
None
- PFADD
- PFCOUNT
- PFMERGE
- MULTI
- EXEC
- DISCARD
- WATCH
- UNWATCH
- PSUBSCRIBE
- PUBSUB
- PUBLISH
- PUNSUBSCRIBE
- SUBSCRIBE
- UNSUBSCRIBE
- EVAL
- EVALSHA
- SCRIPT DEBUG
- SCRIPT EXISTS
- SCRIPT FLUSH
- SCRIPT KILL
- SCRIPT LOAD