本文总结了 egg-redis 的一些参数设置和常用用法,方便开发食用。
存单个值
1
| redis.set(key, value, expiryMode, time )
|
expiryMode
修改过期时间
1
| redis.expire('name', 20);
|
设置 key 在指定时间过期
1 2 3
| await redis.expireat(key,timestamp);
await redis.pexpireat(key,timestamp);
|
存数组
1 2 3
| await this.app.redis.sadd('setList', '张三','李四','赵六')
返回值:['张三', '李四', '赵六']
|
向数组结尾添加元素
1 2 3 4 5 6 7
| await this.app.redis.rpush('userList','张三')
await this.app.redis.rpush('userList','李四')
await this.app.redis.rpush('userList', '王五')
返回一个数组 ['张三','李四', '王五']
|
向数组开始位置添加元素
1 2 3 4 5 6
| await this.app.redis.lpush('userList', '数组左边新增的') [ "数组左边新增的", "张三", "张三", ]
|
存对象
1
| await this.app.redis.hmset('userInfo','name','张三','age',18,'address','回龙观')
|
向对象中添加属性
1 2 3 4 5 6 7 8 9 10 11
| await this.app.redis.hset('loginUser', 'id', 1) await this.app.redis.hset('loginUser', 'uname', '张三') await this.app.redis.hset('loginUser', 'phone', '18888888888') await this.app.redis.hset('loginUser', 'address', '北京市朝阳区')
{ "id": "1", "uname": "张三", "phone": "18888888888", "address": "北京市朝阳区" }
|
获取普通值
1 2
| await this.app.redis.get('gender')
|
获取值得数据类型
1 2
| ctx.body = await this.app.redis.type('name') 返回 string
|
获取数组中所有元素
1 2 3 4 5 6 7
| ctx.body = await this.app.redis.lrange('userList',0,-1) [ "张三", "张三", "李四", ]
|
获取集合中的所有数据
1 2 3 4 5 6
| await this.app.redis.smembers('setList') [ "张三", "李四", "赵六" ]
|
获取对象中的所有数据
1 2 3 4 5 6 7 8
| ctx.body = await this.app.redis.hgetall('loginUser')
{ "id": "1", "uname": "张三", "phone": "18888888888", "address": "北京市朝阳区" }
|
获取对象中的指定属性
1
| await this.app.redis.hget('loginUser', 'address')
|
一次性获取对象中的多个属性
1 2 3 4 5 6 7
| await this.app.redis.hmget('userInfo', 'name','age','address')
[ "张三", "18", "回龙观" ]
|
获取指定 key 的过期时间
1 2 3
| await redis.ttl(key);
await redis.pttl(key);
|
删除指定 key 的过期时间
1
| await redis.persist(key)
|
删除指定的key
1
| await this.app.redis.del('name')
|
删除redis中所有数据
1
| await this.app.redis.flushall()
|
从数组最左边删除一项
1
| await this.app.redis.lpop('userList')
|
从数组最右边删除一项
1
| await this.app.redis.rpop('userList')
|
参考
本文参考以下文章,在此表示感谢!
- egg-redis常用api
- 官方文档