redis简介

中文官方网站 http://www.redis.cn/

redis:REmote(remote)  DIctionary(dictionary) Server 远程字典服务器

  高性能key/value分布式内存数据库,基于内存运行。

  同时还提供list、set、zset、hash等数据格式

  支持数据备份即master-slave(主从复制)模式的数据备份

功能

  内存存储和持久化,redis支持异步将内存的数据写到硬盘上同时不影响继续服务,取最新N个数据的操作。

  模拟类似于HttpSession

  发布、订阅消息系统

  定时器、计数器

 

原文地址:https://www.cnblogs.com/kukai/p/12602395.html