Redis command o...login
Redis command operation Chinese manual
author:php.cn  update time:2022-04-12 14:07:28

Redis tutorial


redisREmote DIctionary Server (Redis) is a key-value storage system written by Salvatore Sanfilippo.

Redis is an open source log-type Key-Value database written in ANSI C language, abides by the BSD protocol, supports the network, can be memory-based and persistent, and provides APIs in multiple languages.

It is often called a data structure server because the value can be a string, hash, map, list, sets and sorted sets ) and other types.

Start learning Redis.


Who is suitable to read this tutorial?

This tutorial is for professional program developers. Through this tutorial, you can understand the application of Redis step by step.


What you need to know before reading this tutorial

Before reading this tutorial, you need to understand the basic data structure.

php.cn