Redis
https://redis.io/documentation
文档 Documentation
注:Redis 文档
Note: The Redis Documentation is also available in raw (computer friendly) format in the redis-doc github repository. The Redis Documentation is released under the Creative Commons Attribution-ShareAlike 4.0 International license.
使用 Redis 编程
Programming with Redis
- Redis 实现的全部命令在文档中贯穿始终地进行讲解。 The full list of commands implemented by Redis, along with thorough documentation for each of them.
- 学习如何一次发送多条命令 Pipelining: Learn how to send multiple commands at once, saving on round trip time.
- Redis 发布/订阅:Redis Pub/Sub: Redis is a fast and stable Publish/Subscribe messaging system! Check it out.
- 内存优化:Memory optimization: Understand how Redis uses RAM and learn some tricks to use less of it.
- 过期:Redis 允许为每一个键设置一个不同的存活时间,以便 这个键在过期时会自动移除。Expires: Redis allows to set a time to live different for every key so that the key will be automatically removed from the server when it expires.
- Redis 作为一个最近使用原则缓存:Redis as an LRU cache: How to configure and use Redis as a cache with a fixed amount of memory and auto eviction of keys.
- Redis 事务:Redis transactions: It is possible to group commands together so that they are executed as a single transaction.
- 客户端缓存:Client side caching: Starting with version 6 Redis supports server assisted client side caching. This document describes how to use it.
- 大量数据插入:Mass insertion of data: How to add a big amount of pre existing or generated data to a Redis instance in a short time.
- 分区:如何在多个 Redis 实例之间分布数据 Partitioning: How to distribute your data among multiple Redis instances.
- 使用 Redis 实现一个分布式锁管理器 Distributed locks: Implementing a distributed lock manager with Redis.
- Redis 关键空间通知:Redis keyspace notifications: Get notifications of keyspace events via Pub/Sub (Redis 2.8 or greater).
- 使用 Redis 创建辅助索引:Creating secondary indexes with Redis: Use Redis data structures to create secondary indexes, composed indexes and traverse graphs.

Redis 是一个功能丰富的键值存储系统,提供编程接口、内存优化、过期机制、事务处理、发布订阅等功能。适用于缓存、分布式锁、数据持久化等场景。文档包括编程指南、管理、性能优化、集群和模块接口等,支持多种编程语言和平台,如嵌入式设备和物联网。
最低0.47元/天 解锁文章
2284

被折叠的 条评论
为什么被折叠?



