Redis Mset 命令
Redis 教程
· 2019-03-07 06:27:46
Redis Mset 命令用于同时设置一个或多个 key-value 对。
语法
redis Mset 命令基本语法如下:
redis 127.0.0.1:6379> MSET key1 value1 key2 value2 .. keyN valueN
可用版本
>= 1.0.1
返回值
总是返回 OK 。
实例
redis 127.0.0.1:6379> MSET key1 "Hello" key2 "World" OK redis 127.0.0.1:6379> GET key1 "Hello" redis 127.0.0.1:6379> GET key2 1) "World"
点击查看所有 Redis 教程 文章: https://www.codercto.com/courses/l/33.html
Blockchain Basics
Daniel Drescher / Apress / 2017-3-16 / USD 20.99
In 25 concise steps, you will learn the basics of blockchain technology. No mathematical formulas, program code, or computer science jargon are used. No previous knowledge in computer science, mathema......一起来看看 《Blockchain Basics》 这本书的介绍吧!