
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 · 83 阅读 · 0 评论 -
redis命令集
$ ./redis-cli -h 192.168.228.174 表示连接 192.168.228.174的redis服务器 查看redis信息: info ping服务器: ping 退出客户端: quit 事务: MULTI : 开启事物 * some redis command * EXEC. : 执行事物 DISCARD :取消事物 WATCH : 监视...原创 2014-05-05 16:40:23 · 103 阅读 · 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 · 99 阅读 · 0 评论 -
mongodb基础
debian下安装 mongodb wget http://downloads.mongodb.org/linux/mongodb-linux-i686-2.6.4.tgz tar -zxvf http://downloads.mongodb.org/linux/mongodb-linux-i686-2.6.4.tgz mkdir -p /data/db ./mongod --d...原创 2014-11-07 21:34:45 · 218 阅读 · 0 评论