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

Redis SCARD – redis 데이터 저장소에서 집합의 크기를 가져오는 방법

이 튜토리얼에서는 COMMAND – SCARD를 사용하여 키에 저장된 설정 값의 크기(요소 수)를 얻는 방법에 대해 알아봅니다. redis-cli에서 redis SCARD 명령의 구문은 다음과 같습니다.-

구문:-

redis host:post> SCARD <key name>

출력:- 

(integer) value, representing the number of elements in the set.
(integer) 0, if key does not exist.
Error, if key exist and value stored at the key is not a set.

예:-

Redis SCARD – redis 데이터 저장소에서 집합의 크기를 가져오는 방법

참조:-

  1. SCARD 명령 문서

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