redis --------- 使用命令(每天一个)

Posted 诚享人生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redis --------- 使用命令(每天一个)相关的知识,希望对你有一定的参考价值。

Key(键)

 Del     语法:DEL  Key [key ...]     删除给定的一个或者多个key  不存在的key会被忽略。

 返回值: 被删粗key的数量

#  删除单个 key

redis> SET name huangz
OK

redis> DEL name
(integer) 1


# 删除一个不存在的 key

redis> EXISTS phone
(integer) 0

redis> DEL phone # 失败,没有 key 被删除
(integer) 0


# 同时删除多个 key

redis> SET name "redis"
OK

redis> SET type "key-value store"
OK

redis> SET website "redis.com"
OK

redis> DEL name type website
(integer) 3

以上是关于redis --------- 使用命令(每天一个)的主要内容,如果未能解决你的问题,请参考以下文章

宝塔安装的redis 每天11点40 会断开

配置redis禁用几个危险命令

Redis 命令学习

每天一个知识点:Redis Zset 原理

万字总结,Redis 性能问题排查解决手册(强烈建议收藏)

深入学习Redis:Redis内存模型