Redis - Keys Del 命令



Redis DEL 命令用于删除 Redis 中现有的键。

返回值

已删除的键的数量。

语法

以下是 Redis DEL 命令的基本语法。

redis 127.0.0.1:6379> DEL KEY_NAME 

示例

首先,在 Redis 中创建一个键,并设置一些值。

redis 127.0.0.1:6379> SET tutorialspoint redis 
OK

现在,删除之前创建的键。

redis 127.0.0.1:6379> DEL tutorialspoint 
(integer) 1
redis_keys.htm
广告