Redis服务器

Redis服务器教程

Redis 服务器命令主要是用于管理 redis 服务。

Redis 服务器相关命令

命令 描述
BGREWRITEAOF 异步执行一个 AOF(AppendOnly File) 文件重写操作
BGSAVE 在后台异步保存当前数据库的数据到磁盘
CLIENT KILL [ip:port] [ID client-id] 关闭客户端连接
CLIENT LIST 获取连接到服务器的客户端连接列表
CLIENT GETNAME 获取连接的名称
CLIENT PAUSE timeout 在指定时间内终止运行来自客户端的命令
CLIENT SETNAME connection-name 设置当前连接的名称
CLUSTER SLOTS 获取集群节点的映射数组
COMMAND 获取 Redis 命令详情数组
COMMAND COUNT 获取 Redis 命令总数
COMMAND GETKEYS 获取给定命令的所有键
TIME 返回当前服务器时间
COMMAND INFO command-name 、[command-name …] 获取指定 Redis 命令描述的数组
CONFIG GET parameter 获取指定配置参数的值
CONFIG REWRITE 对启动 Redis 服务器时所指定的 redis.conf 配置文件进行改写
CONFIG SET parameter value 修改 redis 配置参数,无需重启
CONFIG RESETSTAT 重置 INFO 命令中的某些统计数据
DBSIZE 返回当前数据库的 key 的数量
DEBUG OBJECT key 获取 key 的调试信息
DEBUG SEGFAULT 让 Redis 服务崩溃
FLUSHALL 删除所有数据库的所有key
FLUSHDB 删除当前数据库的所有key
INFO [section] 获取 Redis 服务器的各种信息和统计数值
LASTSAVE 返回最近一次 Redis 成功将数据保存到磁盘上的时间,以 UNIX 时间戳格式表示
MONITOR 实时打印出 Redis 服务器接收到的命令,调试用
ROLE 返回主从实例所属的角色
SAVE 同步保存数据到硬盘
SHUTDOWN [NOSAVE] [SAVE] 异步保存数据到硬盘,并关闭服务器
SLAVEOF host port 将当前服务器转变为指定服务器的从属服务器(slave server)
SLOWLOG subcommand [argument] 管理 redis 的慢日志
SYNC 用于复制功能(replication)的内部命令

案例

Redis INFO命令

使用 INFO 命令查看 Redis 服务器信息

127.0.0.1:6379> INFO # Server redis_version:5.0.5 redis_git_sha1:00000000 redis_git_dirty:0 redis_build_id:2299e57d583efc7c redis_mode:standalone os:Linux 3.10.0-327.el7.x86_64 x86_64 arch_bits:64 multiplexing_api:epoll atomicvar_api:atomic-builtin gcc_version:4.8.5 process_id:11381 run_id:7b9a9cbf66dd2e128c060238fe3976ee62d0f862 tcp_port:6379 uptime_in_seconds:3796511 uptime_in_days:43 hz:10 configured_hz:10 lru_clock:2098933 executable:/home/xxx/redis/redis-server config_file:/home/xxx/redis/redis_6379.conf # Clients connected_clients:11 client_recent_max_input_buffer:4 client_recent_max_output_buffer:0 blocked_clients:0 # Memory used_memory:1063840 used_memory_human:1.01M used_memory_rss:7913472 used_memory_rss_human:7.55M used_memory_peak:5163288 used_memory_peak_human:4.92M used_memory_peak_perc:20.60% used_memory_overhead:1007090 used_memory_startup:784248 used_memory_dataset:56750 used_memory_dataset_perc:20.30% allocator_allocated:1467320 allocator_active:1802240 allocator_resident:8810496 total_system_memory:8203091968 total_system_memory_human:7.64G used_memory_lua:39936 used_memory_lua_human:39.00K used_memory_scripts:136 used_memory_scripts_human:136B number_of_cached_scripts:1 maxmemory:0 maxmemory_human:0B maxmemory_policy:noeviction allocator_frag_ratio:1.23 allocator_frag_bytes:334920 allocator_rss_ratio:4.89 allocator_rss_bytes:7008256 rss_overhead_ratio:0.90 rss_overhead_bytes:-897024 mem_fragmentation_ratio:7.75 mem_fragmentation_bytes:6891888 mem_not_counted_for_evict:0 mem_replication_backlog:0 mem_clients_slaves:0 mem_clients_normal:218930 mem_aof_buffer:0 mem_allocator:jemalloc-5.1.0 active_defrag_running:0 lazyfree_pending_objects:0 # Persistence loading:0 rdb_changes_since_last_save:1637 rdb_bgsave_in_progress:0 rdb_last_save_time:1575360726 rdb_last_bgsave_status:ok rdb_last_bgsave_time_sec:-1 rdb_current_bgsave_time_sec:-1 rdb_last_cow_size:0 aof_enabled:0 aof_rewrite_in_progress:0 aof_rewrite_scheduled:0 aof_last_rewrite_time_sec:-1 aof_current_rewrite_time_sec:-1 aof_last_bgrewrite_status:ok aof_last_write_status:ok aof_last_cow_size:0 # Stats total_connections_received:403 total_commands_processed:4123 instantaneous_ops_per_sec:0 total_net_input_bytes:271617 total_net_output_bytes:221425 instantaneous_input_kbps:0.00 instantaneous_output_kbps:0.00 rejected_connections:0 sync_full:0 sync_partial_ok:0 sync_partial_err:0 expired_keys:9 expired_stale_perc:0.00 expired_time_cap_reached_count:0 evicted_keys:0 keyspace_hits:1820 keyspace_misses:581 pubsub_channels:0 pubsub_patterns:0 latest_fork_usec:0 migrate_cached_sockets:0 slave_expires_tracked_keys:0 active_defrag_hits:0 active_defrag_misses:0 active_defrag_key_hits:0 active_defrag_key_misses:0 # Replication role:master connected_slaves:0 master_replid:bba6139b906253a07f5699a982ec76e63db3b981 master_replid2:0000000000000000000000000000000000000000 master_repl_offset:0 second_repl_offset:-1 repl_backlog_active:0 repl_backlog_size:1048576 repl_backlog_first_byte_offset:0 repl_backlog_histlen:0 # CPU used_cpu_sys:1191.004769 used_cpu_user:1706.714667 used_cpu_sys_children:0.000000 used_cpu_user_children:0.000000 # Cluster cluster_enabled:0 # Keyspace db0:keys=68,expires=0,avg_ttl=0

我们使用 INFO 命令查看了服务器的配置。

Redis服务器教程

Redis 服务器命令主要是用于管理 redis 服务。