We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b88670 commit c6834dcCopy full SHA for c6834dc
README.md
@@ -3,13 +3,13 @@ Redis是Remote Dictionary Server(远程数据服务)的缩写
3
由意大利人 antirez(Salvatore Sanfilippo) 开发的一款 内存高速缓存数据库
4
该软件使用C语言编写,它的数据模型为 key-value
5
它支持丰富的数据结构,比如 String(字符串)list(双向链表) hash(哈希) set(集合) sorted set(有序集合)。数据可持久化(定时写入磁盘中),保证了数据安全。
6
-##使用场景
+#使用场景
7
①[Sort Set]排行榜应用,取top n操作,例如sina微博热门话题
8
②[List]获得最新N个数据 或 某个分类的最新数据
9
③[string]计数器应用 incr
10
④[Set]sns(social network site)获得共同好友
11
⑤[Set]防攻击系统(ip判断),黑白名单等等
12
-##对比memcache
+#对比memcache
13
①Redis不仅仅支持简单的k/v类型的数据,同时还提供list,set,zset,hash等数据结构的存储。
14
②Redis支持master-slave(主—从)模式应用。
15
③Redis支持数据的持久化,可以将内存中的数据保持在磁盘中,重启的时候可以再次加载进行使用。
0 commit comments