随笔分类 -  Redis

摘要:Redis is an open source, BSD licensed, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, ha 阅读全文
posted @ 2018-12-04 22:11 扫地僧2015 阅读(304) 评论(0) 推荐(0)
摘要:1、安装redis 第一步:下载redis安装包 wget http://download.redis.io/releases/redis-4.0.6.tar.gz 1 2 3 4 5 6 7 8 9 10 11 [root@iZwz991stxdwj560bfmadtZ local]# wget 阅读全文
posted @ 2018-12-01 18:33 扫地僧2015 阅读(119) 评论(0) 推荐(0)
摘要:1: 把表名转换为key前缀 如, tag: 2: 第2段放置用于区分区key的字段--对应mysql中的主键的列名,如userid 3: 第3段放置主键值,如2,3,4...., a , b ,c 4: 第4段,写要存储的列名 用户表 user , 转换为key-value存储 userid us 阅读全文
posted @ 2016-09-11 17:31 扫地僧2015 阅读(736) 评论(0) 推荐(0)
摘要:==基本配置 daemonize no 是否以后台进程启动 databases 16 创建database的数量(默认选中的是database 0) save 900 1 #刷新快照到硬盘中,必须满足两者要求才会触发,即900秒之后至少1个关键字发生变化。 save 300 10 #必须是300秒之 阅读全文
posted @ 2016-09-06 11:45 扫地僧2015 阅读(151) 评论(0) 推荐(1)