命令查询Redis中可用命令获取数据库信息(查询redis中所有可用)
Redis是一种开源的内存关系型数据库。它可以用来存储大量的键/值对,因而常被用来存储网站的会话、状态和其他信息。可以使用Redis的命令行接口向数据库中添加、编辑和读取数据,如果想要查询Redis中可用的所有命令,可以使用help命令来获取。
如果想要获取Redis中可用的所有可用命令,只要在Redis客户端中输入“help”,然后就可以看到类似如下内容:
127.0.0.1:6379> help
127.0.0.1:6379>
# All Redis Commands
1) APPEND key value2) BITCOUNT key [start end]
3) BITOP operator destkey key [key ...]4) BLPOP key [key ...] timeout
5) BRPOP key [key ...] timeout......
此外,如果想要获取Redis中指定命令的详细信息,只要在Redis客户端中输入“help 命令”,就可以看到类似如下内容:
127.0.0.1:6379> help db
db 0-16 select index # Select the DB with having the specified index
flushdb # Remove all the keys form the current DB127.0.0.1:6379>
如果想要获取Redis数据库的信息,可以使用INFO命令:
127.0.0.1:6379> INFO
# Serverredis_version:4.0.1
redis_git_sha1:00000000redis_git_dirty:0
redis_mode:standaloneos:Linux 3.10.0-327.el7.x86_64 x86_64
arch_bits:64multiplexing_api:epoll
gcc_version:4.8.5process_id:248
run_id:297d631f7adc1e6ecb28550bfb441a9e7a50008ftcp_port:6379
......
为了查询Redis中可用的命令,可以使用help命令;要获取指定命令的详细信息,可以使用help + 命令名;而获取Redis数据库的信息,可以使用INFO命令。