Redis Keys Del 명령
1. Del 명령
DEL
명령은 Redis에서 기존 키를 삭제하는 데 사용된다.
2. 반환 값
제거된 키의 수 이다.
3. Syntax
1
redis 127.0.0.1:6379> DEL KEY_NAME
1) Example
먼저 Redis에서 키를 만들고 여기에 값을 설정한다.
1
2
redis 127.0.0.1:6379> SET tutorialspoint redis
OK
이제 이전에 만든 키를 삭제한다.
1
2
redis 127.0.0.1:6379> DEL tutorialspoint
(integer) 1
[출처 및 참고]
This post is licensed under CC BY 4.0 by the author.