欢迎大家赞助一杯啤酒🍺 我们准备了下酒菜:Formal mathematics/Isabelle/ML, Formal verification/Coq/ACL2, C++/F#/Lisp
Redis
来自开放百科 - 灰狐
(版本间的差异)
小 (→图书) |
|||
(未显示1个用户的21个中间版本) | |||
第1行: | 第1行: | ||
− | {{SeeWikipedia}} | + | {{SeeWikipedia|Redis (data store)}} |
[[Image:Redis-90x90.gif|right]] | [[Image:Redis-90x90.gif|right]] | ||
第6行: | 第6行: | ||
[[文件:redis.png]] is pretty fast!, 110000 SETs/second, 81000 GETs/second in an entry level Linux box. | [[文件:redis.png]] is pretty fast!, 110000 SETs/second, 81000 GETs/second in an entry level Linux box. | ||
− | == | + | ==安装== |
+ | $ wget http://redis.googlecode.com/files/redis-2.6.13.tar.gz | ||
+ | $ tar xzf redis-2.6.13.tar.gz | ||
+ | $ cd redis-2.6.13 | ||
+ | $ make | ||
+ | $ make tset | ||
+ | 启动服务器 | ||
+ | $ src/redis-server | ||
+ | 客户端交互 | ||
+ | $ src/redis-cli | ||
+ | |||
+ | ==Debian== | ||
+ | apt-get install redis-server | ||
+ | redis-cli | ||
+ | redis> set hello redis | ||
+ | OK | ||
+ | redis> get hello | ||
+ | "redis" | ||
+ | |||
+ | ==管理器== | ||
+ | *[https://github.com/luin/medis medis] based on [[Electron framework]] | ||
+ | *[[Redis Admin UI]] | ||
+ | |||
+ | ==客户端== | ||
+ | *[[ServiceStack]].Redis | ||
+ | *[https://github.com/StackExchange/StackExchange.Redis StackExchange.Redis] | ||
+ | [http://www.redis.io/clients 更多客户端>>>] | ||
+ | |||
+ | ==用户== | ||
+ | *新浪微博目前已经成为最大的Redis用户,感觉Redis已经迅速成长为目前热度仅次于[[MongoDB]]的[[NoSQL]]解决方案。@刘江CE | ||
+ | |||
+ | ==PostgreSQL== | ||
+ | *融合 [[PostgreSQL]] | ||
+ | *[http://www.pgxn.org/dist/redis_fdw/ Redis FDW for PostgreSQL 9.1+] | ||
+ | |||
+ | ==系列文章== | ||
+ | *[http://www.cnblogs.com/redcreen/articles/1955523.html 一.redis 环境搭建] | ||
+ | *[http://www.cnblogs.com/redcreen/archive/2011/02/15/1955405.html 二.redis 数据类型] | ||
+ | *[http://www.cnblogs.com/redcreen/archive/2011/02/15/1955226.html 三.redis 排序] | ||
+ | *[http://www.cnblogs.com/redcreen/articles/1955516.html 四.redis 事务] | ||
+ | *[http://www.cnblogs.com/redcreen/archive/2011/02/15/1955517.html 五.redis pipeline] | ||
+ | *[http://www.cnblogs.com/redcreen/archive/2011/02/15/1955521.html 六.redis 发布订阅] | ||
+ | *[http://www.cnblogs.com/redcreen/archive/2011/02/15/1955520.html 七.redis 持久化] | ||
+ | *[http://www.cnblogs.com/redcreen/archive/2011/02/15/1955518.html 八.redis 主从复制] | ||
+ | *[http://www.cnblogs.com/redcreen/archive/2011/02/15/1955522.html 九.redis学习笔记之虚拟内存] | ||
+ | *[http://www.cnblogs.com/redcreen/archive/2011/02/16/1955844.html 十. redis java client] | ||
+ | |||
+ | ==图书== | ||
+ | *[http://origin.redisbook.com/ Redis 设计与实现(第一版)] | ||
+ | |||
+ | ==商业服务== | ||
+ | *[https://azure.microsoft.com/zh-cn/services/cache/ Azure Redis 缓存] | ||
+ | |||
+ | ==图集== | ||
+ | <gallery> | ||
+ | image:best-nosql-databases-fall-2015-g2-crowd.png|最佳NoSQL | ||
+ | </gallery> | ||
+ | |||
+ | ==链接== | ||
+ | *http://redis.io/ | ||
+ | *[https://github.com/antirez/redis Redis @ GitHub] | ||
*http://code.google.com/p/redis/ | *http://code.google.com/p/redis/ | ||
+ | *[https://redistogo.com/ Redis To Go: imple Redis Hosting] | ||
+ | *[http://www.infoq.com/cn/articles/tq-why-choose-redis 为什么使用 Redis及其产品定位] | ||
+ | *[http://www.programmer.com.cn/14577/ Redis经验谈,新浪作为全世界最大的Redis用户,在开发和运维方面有非常多的经验。] | ||
+ | *[https://github.com/huangz1990 黄健宏 @ GitHub] | ||
− | [[ | + | [[category:database]] |
− | [[ | + | [[category:NoSQL]] |
+ | [[category:c programming language]] |
2016年9月12日 (一) 06:36的最后版本
您可以在Wikipedia上了解到此条目的英文信息 Redis Thanks, Wikipedia. |
Redis: A persistent key-value database with built-in net interface written in ANSI-C for Posix systems.
is pretty fast!, 110000 SETs/second, 81000 GETs/second in an entry level Linux box.
目录 |
[编辑] 安装
$ wget http://redis.googlecode.com/files/redis-2.6.13.tar.gz $ tar xzf redis-2.6.13.tar.gz $ cd redis-2.6.13 $ make $ make tset
启动服务器
$ src/redis-server
客户端交互
$ src/redis-cli
[编辑] Debian
apt-get install redis-server redis-cli redis> set hello redis OK redis> get hello "redis"
[编辑] 管理器
- medis based on Electron framework
- Redis Admin UI
[编辑] 客户端
[编辑] 用户
[编辑] PostgreSQL
[编辑] 系列文章
- 一.redis 环境搭建
- 二.redis 数据类型
- 三.redis 排序
- 四.redis 事务
- 五.redis pipeline
- 六.redis 发布订阅
- 七.redis 持久化
- 八.redis 主从复制
- 九.redis学习笔记之虚拟内存
- 十. redis java client
[编辑] 图书
[编辑] 商业服务
[编辑] 图集
[编辑] 链接
分享您的观点