DUMP

Redis Developer Course Redis Technical Support Redis Enterprise Server

data를 dump

간단한 사용법은 dump key 이다.
Redis-specific format으로 값을 리턴한다. RESTORE 명령으로 DB 다시 저장할 수 있다.
Dump data에 Expire time은 포함하지 않는다. RESTORE 시 expire time을 설정할 수 있다.

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


명령문

DUMP key

  • 이 명령은 version 2.6.0 부터 사용할 수 있다.
  • 논리적 처리 소요시간은 O(1)이다.
관련 명령 RESTORE, MIGRATE
Clients for Java Jedis, Lettuce, Redisson
Clients for C Hiredis

<< MOVE DUMP RESTORE >>

Email 답글이 올라오면 이메일로 알려드리겠습니다.

혹시 처음이세요?
레디스게이트에는 레디스에 대한 많은 정보가 있습니다.
레디스 소개, 명령어, SQL, 클라이언트, 서버, 센티널, 클러스터 등이 있습니다.
혹시 필요한 정보를 찾기 어려우시면 redisgate@gmail.com로 메일 주세요.
제가 찾아서 알려드리겠습니다.
 
close
IP를 기반으로 보여집니다.