天行健,君子以自强不息;
地势坤,君子以厚德载物;
memcache还是redis
作者:曲文庆 日期:2012-10-31 16:49
转载:
经常在项目里会遇见作为缓存是选择memcache还是redis,虽然redis在近几年比较火,但也不能完全就认为redis可以取代memcache,他两也有各自的优点。下面来看看两者之间的不同。
下面内容来自Redis作者在stackoverflow上的一个回答,对应的问题是《Is memcached a dinosaur in comparison to Redis?》
You should not care too much about performances. Redis is faster per core with small values, but memcache
redis使用过程中的几点经验教训
作者:曲文庆 日期:2012-10-25 15:08
1、Redis在启动时会把数据加载到内存中,达到最大内存后,Redis会先尝试清除已到期或即将到期的Key,当此方法处理后,仍然到达最大内存设置,将无法再进行写入操作,但仍然可以进行读取操作。
2、到底是否需要redis的持久化能力?
redis持久化的是数据集的当前快照,于是当你用它来做存储,而不是缓存时,就会很纠结。
当数据集很大的时候,比如64G内存,数据集30G,你愿意dump快照或者aof收缩吗?如果这样做,问题就来了,redis的dump是fork一个进程,利用操作系统内存管理的copy-on-write来得到当前内存快照,但如果数据的更新比较频繁,30G内存dump到磁盘的速度
标签: Redis
Redis 2.2 性能问题
作者:曲文庆 日期:2012-03-26 18:55
系统环境:
CPU:E5620 X 2
Memory:96G
Disk:300G SAS
OS:CentOS 5
Redis:2.2.12
服务器创建了两个redis 实例:A和B
实例A内存占用200M多,有频繁的读写操作
实例B内存占用1G多,主要是读操作
系统每小时对实例A和B做一次bgrewriteaof
后端有针对实例A和B业务的可用性监控
问题:
当B实例做bgrewriteaof时候,A实例的业务访问异常,用cli模式登陆A实例,发现无论是读还是写,都异常慢。
观察系统资源,很淡定,观察disk io,发现B实例做bgrewriteaof时,disk的使用率100%
分析是硬盘
标签: Redis
redis将slave转换为master
作者:曲文庆 日期:2011-12-16 17:30
在slave server上执行”SLAVEOF NO ONE”,将slave server转换为master server.
Once you are sure that the master is no longer receiving any query (you can check this with the MONITOR command), elect the slave to master using the SLAVEOF NO ONE command, and shut down your master.
Once you are sure that the master is no longer receiving any query (you can check this with the MONITOR command), elect the slave to master using the SLAVEOF NO ONE command, and shut down your master.
标签: Redis
redis海量数据测试(续三)
作者:曲文庆 日期:2011-11-17 11:04
redis海量数据测试(续三)
提纲:
- redis海量数据测试( 续三)
- 环境
- 运行脚本
- redis配置
- 运行时间
- 系统状态
- 运行结果
100000000 keys in Redis 2.2.12
用1到100000000数字做key,用固定uuid做value,写入redis
key:value格式:
100000000:0810d16b-056d-47f4-9895-48399b50b169 |
环境
CPU:Intel(R) Xeon(R) CPU E5620 @ 2.40GHz X 2
MEM:32G
DISK:300G SAS
运行脚本
run.sh
#!/bin/sh for i in `seq 1 100` do |
标签: Redis