Computer >> 컴퓨터 >  >> 프로그램 작성 >> Redis

redis 데이터 저장소에서 문자열 값을 가져오는 방법 – Redis GET | MGET

이 튜토리얼에서는 redis GET를 사용하여 redis 데이터 저장소의 키에 저장된 문자열 값을 가져오는 방법을 배웁니다. 및 MGET 명령.

GET 명령

GET 명령은 지정된 키에 저장된 문자열 값을 가져오는 데 사용됩니다. key가 존재하지 않으면 nil을 반환하고 key가 존재하지만 key에 저장된 값이 string이 아니면 error를 반환한다. redis GET 명령어의 구문은 다음과 같습니다.-

구문:-

redis host:post> GET <key name>

출력:-

- (strings) reply, representing a string value stored at a key.
- (nil), if key does not exists.
- Error, if key exist and value stored at the key is not a string.

예:-

redis 데이터 저장소에서 문자열 값을 가져오는 방법 – Redis GET | MGET

MGET 명령

MGET 명령은 지정된 모든 키에 저장된 문자열 값을 가져오는 데 사용됩니다. 지정된 키가 존재하지 않거나 존재하지만 키에 저장된 값이 문자열이 아닌 경우 nil이 반환됩니다. redis MGET 명령의 구문은 다음과 같습니다.-

구문:-

redis host:post> MGET <keyname-1> <keyname-2> <keyname-3>

출력:-

- (array) reply, representing a string values stored at all the specified key.
- (nil), if key does not exists.
- (nil), if key exist and value stored at the key is not a string.

예:-

redis 데이터 저장소에서 문자열 값을 가져오는 방법 – Redis GET | MGET

참조:-

  1. GET 명령 문서
  2. MGET 명령 문서

redis 데이터 저장소에 저장된 문자열 값을 가져오는 방법은 여기까지입니다. 마음에 드셨다면 댓글 섹션에 의견을 공유하고 다른 사람들과도 공유해 주세요.

<- 문자열 명령