Redis Keys: DEL
DEL Keys
The Redis DEL command is used to remove the specified keys. A key is ignored if it does not exist.
Syntax:
COMMAND KEY_NAME
Available since
1.0.0.
Return Value
Integer Reply: Number of keys that were removed.
Return Value Type
Integer
Example: Redis DEL
First, create a key in redis and set some value in it. and then delete the created keys.
127.0.0.1:6379> SET key "Good" OK 127.0.0.1:6379> SET key1 "Morning" OK 127.0.0.1:6379> DEL key key1 key2 (integer) 2
Previous:
Redis Data Types
Next:
DUMP
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join