Post

Redis Keys Persist 명령

1. Persist 명령

PERSIST 명령은 키에서 만료를 제거하는 데 사용된다.

2. 반환 값

정숫값 1은 키에서 제한 시간이 제거된 경우이고, 0은 키가 존재하지 않거나 연관된 제한 시간이 없는 경우이다.

3. Syntax

1
redis 127.0.0.1:6379> PERSIST KEY_NAME

1) Example

먼저 Redis에서 키를 만들고 여기에 값을 설정한다.

1
2
redis 127.0.0.1:6379> SET tutorial1 redis
OK

이제 키 만료를 설정하고 나중에 만료를 제거한다.

1
2
3
4
5
6
7
8
redis 127.0.0.1:6379> EXPIRE tutorial1 60 
1) (integer) 1 
redis 127.0.0.1:6379> TTL tutorial1 
1) (integer) 60 
redis 127.0.0.1:6379> PERSIST tutorial1 
1) (integer) 1 
redis 127.0.0.1:6379> TTL tutorial1 
1) (integer) -1

[출처 및 참고]

This post is licensed under CC BY 4.0 by the author.