dbsize
Redis DBSIZE
Redis Server Course | Redis Technical Support | Redis Enterprise Server |
---|
Redis DBSIZE
개요 槪要 Outline
현재 사용중인(선택된) DB의 키 개수를 보여준다. 레디스는 기본적으로 16개의 DB를 제공한다. DB 선택은 select index(숫자) 명령으로 할 수 있다.
설명 說明 Explanation
명령 실행 예:
0번 DB는 2459개의 키가 있고 1번 DB는 키가 없다.
127.0.0.1:7000> dbsize
(integer) 2459
127.0.0.1:7000> select 1
OK
127.0.0.1:7000[1]> dbsize
(integer) 0
(integer) 2459
127.0.0.1:7000> select 1
OK
127.0.0.1:7000[1]> dbsize
(integer) 0
info keyspace 명령은 키를 가지고 있는 모든 DB 정보를 보여준다.
127.0.0.1:7000> info keyspace
# Keyspace
db0:keys=2459,expires=0,avg_ttl=0
# Keyspace
db0:keys=2459,expires=0,avg_ttl=0
INFO 옵션
Info 옵션을 사용하면 각 데이터 타입별로 키 개수와 만료시간(expire)이 설정된 키와 멤버 개수를 보여줍니다. 줄여서 db info 사용해도 됩니다.
127.0.0.1:7000> dbsize info
db0:keys=325,expires=0,avg_ttl=0,string=25,list=100,set=100,zset=100,hash=0,stream=0,module=0,
expire_keys=10,expire_members=15(8,8)
db0:keys=325,expires=0,avg_ttl=0,string=25,list=100,set=100,zset=100,hash=0,stream=0,module=0,
expire_keys=10,expire_members=15(8,8)
이 기능은 Enterprise 서버에서 사용 가능합니다. |
명령문 Command
DBSIZE [info]
- 이 명령은 version 1.0.0 부터 사용할 수 있다.
- 이 문서는 버전 3.2.2를 기준으로 만들었다.
Clients for C | Hiredis |
<< LASTSAVE | DBSIZE | FLUSHDB >> |
---|
조회수 :
Email
답글이 올라오면 이메일로 알려드리겠습니다.