Redis设置内存大小和查看内存使用情况

Redis设置内存大小和查看内存使用情况

一、设置内存大小

(1)编辑配置文件,本文的配置位置在/etc/redis/6379.conf,这是使用了utils工具包的install_server.sh脚本安装成为系统服务,可以使用systemctl start | restart | stop命令操作redis服务,同时也是配置开机启动。

vim /etc/redis/6379.conf
# 找到maxmemory,设置想要的大小即可,默认单位为 byte,可以设置为mb或GB
maxmemory 1GB #设置为1GB大小

vim 操作查找,按Esc进入 一般命令模式,然后输入:/maxmemory进行查找

(2)重启redis

systemctl restart redis_6379
# 这是服务名是install_server.sh脚本起的,可以通过`chkconfig --list`查看到所有的系统服务,
# 第一列是服务名,这里不列出来了,

二、查看redis内存使用情况

(1)使用redis-cli连接redis

redis-cli
auth "yourpassword" #没有设置秘密的跳过

(2)输入info memory查看使用

# Memory
used_memory:1210776
used_memory_human:1.15M
used_memory_rss:7802880
used_memory_rss_human:7.44M
used_memory_peak:1355336
used_memory_peak_human:1.29M
used_memory_peak_perc:89.33%
used_memory_overhead:890970
used_memory_startup:791408
used_memory_dataset:319806
used_memory_dataset_perc:76.26%
allocator_allocated:1247080
allocator_active:1634304
allocator_resident:4579328
total_system_memory:33566306304
total_system_memory_human:31.26G
used_memory_lua:37888
used_memory_lua_human:37.00K
used_memory_scripts_human:0B
number_of_cached_scripts:0
maxmemory:1073741824
maxmemory_human:1.00G
maxmemory_policy:noeviction
allocator_frag_ratio:1.31
allocator_frag_bytes:387224
allocator_rss_ratio:2.80
allocator_rss_bytes:2945024
rss_overhead_ratio:1.70
rss_overhead_bytes:3223552
mem_fragmentation_ratio:6.67
mem_fragmentation_bytes:6633120
mem_not_counted_for_evict:0
mem_replication_backlog:0
mem_clients_slaves:0
mem_clients_normal:83538
mem_aof_buffer:0
mem_allocator:jemalloc-5.1.0
active_defrag_running:0
lazyfree_pending_objects:0

相关解释
-human后缀表示以人类可读的方式展示,也就是后面带单位了
used_memory:1210776 #已经内存使用的大小
used_memory_human:1.15M # 带单位展示
used_memory_rss:7802880 # 从操作系统角度看redis内存占用多少
used_memory_rss_human:7.44M # 带单位展示
maxmemory:1073741824 # 最大内存大小
maxmemory_human:1.00G # 带单位展示

你可能感兴趣的:(Redis,服务器操作,redis,数据库,database)