欢迎大家赞助一杯啤酒🍺 我们准备了下酒菜:Formal mathematics/Isabelle/ML, Formal verification/Coq/ACL2, C++/F#/Lisp
Redis
来自开放百科 - 灰狐
(版本间的差异)
小 (→系列文章) |
小 |
||
第1行: | 第1行: | ||
− | |||
{{SeeWikipedia|Redis (data store)}} | {{SeeWikipedia|Redis (data store)}} | ||
第7行: | 第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 | $ wget http://redis.googlecode.com/files/redis-2.6.13.tar.gz | ||
$ tar xzf redis-2.6.13.tar.gz | $ tar xzf redis-2.6.13.tar.gz | ||
第35行: | 第34行: | ||
*融合 [[PostgreSQL]] | *融合 [[PostgreSQL]] | ||
*[http://www.pgxn.org/dist/redis_fdw/ Redis FDW for PostgreSQL 9.1+] | *[http://www.pgxn.org/dist/redis_fdw/ Redis FDW for PostgreSQL 9.1+] | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
==系列文章== | ==系列文章== | ||
第60行: | 第51行: | ||
==链接== | ==链接== | ||
+ | *http://redis.io/ | ||
+ | *[https://github.com/antirez/redis Redis @ GitHub] | ||
+ | *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] | *[https://github.com/huangz1990 黄健宏 @ GitHub] | ||
− | [[category: | + | [[category:database]] |
[[category:NoSQL]] | [[category:NoSQL]] | ||
[[category:c programming language]] | [[category:c programming language]] |
2016年2月29日 (一) 07:57的版本
您可以在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"
项目
用户
PostgreSQL
系列文章
- 一.redis 环境搭建
- 二.redis 数据类型
- 三.redis 排序
- 四.redis 事务
- 五.redis pipeline
- 六.redis 发布订阅
- 七.redis 持久化
- 八.redis 主从复制
- 九.redis学习笔记之虚拟内存
- 十. redis java client
图书
链接
分享您的观点