Redis Command Count Command
β Learn not just technology, but dreams!
Redis Commands
- Redis Commands
- Redis Keys (key)
- Redis Strings (String)
- Redis Hashes (Hash)
- Redis Lists (List)
- Redis Sets (Set)
- Redis Sorted Sets (sorted set)
- Redis HyperLogLog
- Redis Pub/Sub
- Redis Transactions
- Redis Scripting
- Redis Connection
- Redis Server
- Redis GEO
- Redis Stream
Advanced Redis Tutorials
- Redis Backup and Restore
- Redis Security
- Redis Performance Testing
- Redis Client Connection
- Redis Pipelining
- Redis Partitioning
- Using Redis with Java
- Using Redis with PHP
Redis Command Count Command
The COMMAND COUNT command in Redis is used to count the total number of available Redis commands.
Syntax
The basic syntax for the COMMAND COUNT command is as follows:
redis 127.0.0.1:6379> COMMAND COUNT
Available Version
>= 2.8.13
Returns
The total number of Redis commands.
Example
redis 127.0.0.1:6379> COMMAND COUNT (integer) 163
YouTip