摘要:
一、String(字符串)操作 String在redis中的存储是按照key-value的形式存储 1、SET key value [EX seconds] [PX milliseconds] [NX|XX] EX second :设置键的过期时间为 second 秒。 PX millisecond 阅读全文
摘要:
1、DEL key [key ...] 实例: 127.0.0.1:6379> set kinds science OK 127.0.0.1:6379> del kinds #删除键 (integer) 1 127.0.0.1:6379> exists kinds #删除不存在的键 (integer 阅读全文