redis
梦醒后的冷漠
这个作者很懒,什么都没留下…
展开
-
Linux安装Redis4.02安装和redis的cluster集群配置
安装插件yum install gccyum -y install gcc gcc-c++ libstdc++-devel yum install -y tcl2.下载并安装redis4.02wget http://download.redis.io/releases/redis-4.0.2.tar.gztar -zxvf redis-4.0.2.tar.gz...原创 2018-09-04 18:43:27 · 324 阅读 · 0 评论 -
docker 安装redis4.0.14
docker pull redis:4.0.14docker run --name redis -d docker.io/redis:4.0.14原创 2019-04-10 10:45:35 · 911 阅读 · 1 评论 -
怎么用redis的HMSET将mysql中的数据导入redis
Create TableCREATE TABLE `order` ( `orderid` varchar(38) DEFAULT NULL, `ordertime` datetime DEFAULT NULL, `ordermoney` decimal(20,0) DEFAULT NULL, `orderstatus` char(1) DEFAULT NULL, `ver...原创 2019-05-18 10:21:39 · 275 阅读 · 0 评论 -
kubesphere 安装redis
1.新建存储卷redis-data2.在配置中心配置rediskey如下:redis.conf值为:# Redis configuration file example.## Note that in order to read the configuration file, Redis must be# started with the file path as firs...原创 2019-06-25 13:48:34 · 1358 阅读 · 0 评论 -
redis批量删除key命令
redis-cli -h 127.0.0.1 -p 6379-a pwd keys spring:session:sessions:* >1.txtsed -i 's/^/redis-cli -h 127.0.0.1 -p 6379-a pwd del &/' 1.txt原创 2019-07-24 09:02:49 · 458 阅读 · 0 评论