
redis
iteye_13213
这个作者很懒,什么都没留下…
展开
-
redis brief
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, hashes, lists, sets and sorted sets.Installati...原创 2014-05-04 16:43:47 · 75 阅读 · 0 评论 -
redis命令集
$ ./redis-cli -h 192.168.228.174 表示连接 192.168.228.174的redis服务器查看redis信息: infoping服务器: ping退出客户端: quit事务:MULTI : 开启事物 * some redis command *EXEC. : 执行事物DISCARD :取消事物 WATCH : 监视...原创 2014-05-05 16:40:23 · 90 阅读 · 0 评论 -
redis基础
$ wget http://download.redis.io/redis-stable.tar.gz$ tar xvzf redis-stable.tar.gz$ cd redis-2.8.13$ make运行redis服务器$ src/redis-server & // &表示后台运行interact with Redis using the built-...原创 2014-07-22 11:45:26 · 89 阅读 · 0 评论 -
mongodb基础
debian下安装 mongodb wget http://downloads.mongodb.org/linux/mongodb-linux-i686-2.6.4.tgztar -zxvf http://downloads.mongodb.org/linux/mongodb-linux-i686-2.6.4.tgzmkdir -p /data/db./mongod --d...原创 2014-11-07 21:34:45 · 200 阅读 · 0 评论