分类:Redis:修订间差异
跳到导航
跳到搜索
(创建页面,内容为“Redis(Remote Dictionary Server, 远程字典服务),是一个开源的使用 ANSI C 语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value 数据库。 Redis 的数据是存在内存中的,读写速度每秒可处理超过 10 万次读写操作。广泛应用在应用缓存领域,也经常用来做分布式锁。除此之外,Redis 支持事务、持久化、LUA 脚本、LRU 驱动事件、多种集群方案。 The open so…”) |
无编辑摘要 |
||
第4行: | 第4行: | ||
The open source, in-memory data store used by millions of developers as a database, cache, streaming engine, and message broker. | The open source, in-memory data store used by millions of developers as a database, cache, streaming engine, and message broker. | ||
==See Also== | |||
# [https://redis.io/ Redis.io] | |||
# [https://www.runoob.com/redis Redis 教程] |
2023年12月27日 (三) 17:24的最新版本
Redis(Remote Dictionary Server, 远程字典服务),是一个开源的使用 ANSI C 语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value 数据库。
Redis 的数据是存在内存中的,读写速度每秒可处理超过 10 万次读写操作。广泛应用在应用缓存领域,也经常用来做分布式锁。除此之外,Redis 支持事务、持久化、LUA 脚本、LRU 驱动事件、多种集群方案。
The open source, in-memory data store used by millions of developers as a database, cache, streaming engine, and message broker.