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

Redis ZCARD – redis 데이터 저장소에서 정렬된 세트의 크기를 가져오는 방법

이 튜토리얼에서는 COMMAND – ZCARD를 사용하여 키에 저장된 정렬된 설정 값의 크기(요소 수)를 가져오는 방법을 배웁니다. redis-cli에서 redis ZCARD 명령의 구문은 다음과 같습니다.-

구문:-

redis host:post> ZCARD <key name>

출력:- 

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

예:-

Redis ZCARD – redis 데이터 저장소에서 정렬된 세트의 크기를 가져오는 방법

참조:-

  1. ZCARD 명령 문서

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