摘要: redis常用工具类Utils 1 package com.yw.redis.utils; 2 3 import com.alibaba.fastjson.JSON; 4 import redis.clients.jedis.Jedis; 5 import redis.clients.jedis.J 阅读全文
posted @ 2020-05-12 23:49 愿无违 阅读(649) 评论(0) 推荐(0) 编辑
摘要: Redis中对Set类型的操作命令 一:sadd:添加元素,格式是:sadd set的key item的项值,item项可以有多个。 1 127.0.0.1:6379> sadd set 1 2 3 4 2 (integer) 4 3 127.0.0.1:6379> sadd set 1 //不可重 阅读全文
posted @ 2020-05-12 23:44 愿无违 阅读(424) 评论(0) 推荐(0) 编辑