restore
RESTORE
레디스 개발자 교육 신청 |
레디스 정기점검/기술지원 Redis Technical Support |
레디스 엔터프라이즈 서버 Redis Enterprise Server |
---|
data를 restore
간단한 사용법은 RESTORE key 0 "serialized value" 이다.
"serialized value"는 DUMP 명령으로 얻은 값이다.
key 다음에 millisecond로 expire time을 입력 할 수 있다. 0는 expire time를 지정하지 않는 것이다.
REPLACE option은 기존에 key가 있으면 덮어쓴다.
Example
명령> | set key a |
결과> | OK |
명령> | dump key |
결과> | "\x00\x01a\x06\x00)\x13\x87\x1bzcA'" |
명령> | del key |
결과> | 1 |
명령> | restore key 0 "\x00\x01a\x06\x00)\x13\x87\x1bzcA'" |
결과> | OK |
명령> | get key |
결과> | a |
명령문
RESTORE key ttl serialized-value [REPLACE]
- 이 명령은 version 2.6.0 부터 사용할 수 있다.
- 논리적 처리 소요시간은 O(1)이다.
- 6.0부터 Event Notification 발생 -> 'restore'
관련 명령 | DUMP, MIGRATE |
Clients for Java | Jedis, Lettuce, Redisson | Clients for C | Hiredis |
<< DUMP | RESTORE | MIGRATE >> |
---|
Email
답글이 올라오면 이메일로 알려드리겠습니다.