
Redis
幻影浪子
临渊慕鱼,不如退而结网
展开
-
【Redis入门】常用工具
1、redis-benchmark redis基准信息,redis服务器性能检测redis-benchmark -h localhost -p 6379 -c 100 -n 100000该命名表示100个并发连接,100000个请求,检测host为localhost 端口为6379的redis服务器的性能 参数详解:执行此命令会去尝试各种操作,比如PING、SET、GET、PUSH等等。2、red原创 2012-02-11 23:50:45 · 3197 阅读 · 0 评论 -
【Redis入门】安装、启动
InstallationDownload, extract and compile Redis with:$ wget http://redis.googlecode.com/files/redis-2.4.7.tar.gz $ tar xzf redis-2.4.7.tar.gz $ cd redis-2.4.7 $ make The binaries that are now compiled原创 2012-02-11 23:50:30 · 16961 阅读 · 2 评论 -
Redis几个认识误区
转自: http://timyang.net/tag/redis/1. Redis是什么这个问题的结果影响了我们怎么用Redis。如果你认为Redis是一个key value store, 那可能会用它来代替MySQL;如果认为它是一个可以持久化的cache, 可能只是它保存一些频繁访问的临时数据。Redis是REmote DIctionary Server的缩写,在Redis在官方网站的的副标转载 2012-03-15 23:15:19 · 2351 阅读 · 0 评论