Skip to content

Commit

Permalink
更新redis内容
Browse files Browse the repository at this point in the history
  • Loading branch information
Snailclimb committed Jun 6, 2018
1 parent f9667f5 commit 0f6d9cb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions 数据存储/Redis.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
Redis 是一个使用 C 语言写成的,开源的 key-value 数据库。。和Memcached类似,它支持存储的value类型相对更多,包括string(字符串)、list(链表)、set(集合)、zset(sorted set --有序集合)和hash(哈希类型)。这些数据类型都支持push/pop、add/remove及取交集并集和差集及更丰富的操作,而且这些操作都是原子性的。在此基础上,redis支持各种不同方式的排序。与memcached一样,为了保证效率,数据都是缓存在内存中。区别的是redis会周期性的把更新的数据写入磁盘或者把修改操作写入追加的记录文件,并且在此基础上实现了master-slave(主从)同步。目前,Vmware在资助着redis项目的开发和维护。

> ### 书籍推荐
**《Redis实战》**
Expand Down

0 comments on commit 0f6d9cb

Please sign in to comment.