The two main ways to get data from Redis are: GET command: Get the value of a single key. MGET command: Get the values of multiple keys at once.
Get data from Redis
Method:
From There are two main methods to obtain data in Redis:
Syntax:
GET key
##MGET key1 key2 ... keyN
Where: is the key to get the value from.
,
key2, ...
keyN are the multiple keys to get the value from.
Return value:
<code class="redis">// 使用 GET 命令获取单个键值
GET name
// 输出:
"John"
// 使用 MGET 命令获取多个键值
MGET name age city
// 输出:
["John", "30", "New York"]</code>
key must already exist to get the value.
The above is the detailed content of How to get data from redis. For more information, please follow other related articles on the PHP Chinese website!