appstore-1panel/apps/redis
2023-08-03 17:24:09 +08:00
..
6.2.12 feat: 修改 Redis 应用的密码字段 (#297) 2023-08-03 17:24:09 +08:00
7.0.12 feat: 修改 Redis 应用的密码字段 (#297) 2023-08-03 17:24:09 +08:00
data.yml feat: 应用商店升级到 v2 版本 (#91) 2023-05-18 18:25:00 +08:00
logo.png feat: 压缩 logo.png (#212) 2023-07-10 15:46:28 +08:00
README.md refactor: 修改部分应用 README 内容 2023-07-17 13:58:42 +08:00

What is Redis?

Redis is often referred to as a data structures server. What this means is that Redis provides access to mutable data structures via a set of commands, which are sent using a server-client model with TCP sockets and a simple protocol. So different processes can query and modify the same data structures in a shared way.

Data structures implemented into Redis have a few special properties:

  • Redis cares to store them on disk, even if they are always served and modified into the server memory. This means that Redis is fast, but that it is also non-volatile.
  • The implementation of data structures emphasizes memory efficiency, so data structures inside Redis will likely use less memory compared to the same data structure modelled using a high-level programming language.
  • Redis offers a number of features that are natural to find in a database, like replication, tunable levels of durability, clustering, and high availability.

Another good example is to think of Redis as a more complex version of memcached, where the operations are not just SETs and GETs, but operations that work with complex data types like Lists, Sets, ordered data structures, and so forth.

If you want to know more, this is a list of selected starting points: