设置Redis最大占用内存的实现
来源:脚本之家
时间:2023-01-07 11:59:30 410浏览 收藏
对于一个数据库开发者来说,牢固扎实的基础是十分重要的,golang学习网就来带大家一点点的掌握基础知识点。今天本篇文章带大家了解《设置Redis最大占用内存的实现》,主要介绍了Redis最大占用内存,希望对大家的知识积累有所帮助,快点收藏起来吧,否则需要时就找不到了!
Redis需要设置最大占用内存吗?如果Redis内存使用超出了设置的最大值会怎样?
打开redis配置文件
找到如下段落,设置maxmemory参数,maxmemory是bytes字节类型,注意转换。修改如下所示:
# In short... if you have slaves attached it is suggested that you set a lower # limit for maxmemory so that there is some free RAM on the system for slave # output buffers (but this is not needed if the policy is 'noeviction'). # # maxmemorymaxmemory 268435456
本机服务器redis配置文件路径:/usr/local/openresty/lualib/redis/redis.conf,由于本机自带内存只有4G,一般推荐Redis设置内存为最大物理内存的四分之三,所以设置3G,换成Byte是3221225472.
我们可以在CentOS下输入命令:find / -name redis查找redis目录:
[root@VM-8-8-centos ~]# find / -name redis /etc/selinux/targeted/active/modules/100/redis /usr/local/openresty/lualib/redis
Redis使用超过设置的最大值
如果Redis的使用超过了设置的最大值会怎样?让我们来改一改上面的配置,故意把最大值设为1个byte试试。
# output buffers (but this is not needed if the policy is 'noeviction'). # # maxmemorymaxmemory 1
打开debug模式下的页面,提示错误:OOM command not allowed when used memory > ‘maxmemory’.
设置了maxmemory的选项,redis内存使用达到上限。可以通过设置LRU算法来删除部分key,释放空间。默认是按照过期时间的,如果set时候没有加上过期时间就会导致数据写满maxmemory。
如果不设置maxmemory或者设置为0,64位系统不限制内存,32位系统最多使用3GB内存。
LRU是Least Recently Used 最近最少使用算法。
- volatile-lru -> 根据LRU算法生成的过期时间来删除
- allkeys-lru -> 根据LRU算法删除任何key
- volatile-random -> 根据过期设置来随机删除key
- allkeys->random -> 无差别随机删
- volatile-ttl -> 根据最近过期时间来删除(辅以TTL)
- noeviction -> 谁也不删,直接在写操作时返回错误 如果设置了maxmemory,一般都要设置过期策略。打开Redis的配置文件有如下描述,Redis有六种过期策略:
# volatile-lru -> remove the key with an expire set using an LRU algorithm # allkeys-lru -> remove any key accordingly to the LRU algorithm # volatile-random -> remove a random key with an expire set # allkeys-random -> remove a random key, any key # volatile-ttl -> remove the key with the nearest expire time (minor TTL) # noeviction -> don't expire at all, just return an error on write operations
那么打开配置文件,添加如下一行,使用volatile-lru的过期策略:
maxmemory-policy volatile-lru
保存文件退出,重启redis服务。
使用info命令查看Redis内存使用情况
如服务器Redis所在目录:/usr/local/openresty/lualib/redis/src
在终端输入./redis-cli,打开Redis客户端,输入info命令。
出来如下信息:
[root@iZ94r80gdghZ src]# ./redis-cli 127.0.0.1:6379> info # Server redis_version:3.0.7 redis_git_sha1:00000000 redis_git_dirty:0 redis_build_id:f07a42660a61a05e redis_mode:standalone os:Linux 3.10.0-327.10.1.el7.x86_64 x86_64 arch_bits:64 multiplexing_api:epoll gcc_version:4.8.5 process_id:2165 run_id:8ec8a8dc969d6e2f2867d9188ccb90850bfc9acb tcp_port:6379 uptime_in_seconds:668 uptime_in_days:0 hz:10 lru_clock:15882419 config_file:/etc/redis/6379.conf # Clients connected_clients:1 client_longest_output_list:0 client_biggest_input_buf:0 blocked_clients:0 # Memory used_memory:816232 used_memory_human:797.10K used_memory_rss:7655424 used_memory_peak:816232 used_memory_peak_human:797.10K used_memory_lua:36864 mem_fragmentation_ratio:9.38 mem_allocator:jemalloc-3.6.0 # Persistence loading:0 rdb_changes_since_last_save:0 rdb_bgsave_in_progress:0 rdb_last_save_time:1458722327 rdb_last_bgsave_status:ok rdb_last_bgsave_time_sec:-1 rdb_current_bgsave_time_sec:-1 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 # Stats total_connections_received:1 total_commands_processed:0 instantaneous_ops_per_sec:0 total_net_input_bytes:14 total_net_output_bytes:0 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:0 evicted_keys:0 keyspace_hits:0 keyspace_misses:0 pubsub_channels:0 pubsub_patterns:0 latest_fork_usec:0 migrate_cached_sockets:0 # Replication role:master connected_slaves:0 master_repl_offset:0 repl_backlog_active:0 repl_backlog_size:1048576 repl_backlog_first_byte_offset:0 repl_backlog_histlen:0 # CPU used_cpu_sys:0.30 used_cpu_user:0.29 used_cpu_sys_children:0.00 used_cpu_user_children:0.00 # Cluster cluster_enabled:0 # Keyspace db0:keys=1,expires=1,avg_ttl=425280
其中used_memory:816232,仅用了0.7M左右。
今天带大家了解了Redis最大占用内存的相关知识,希望对你有所帮助;关于数据库的技术知识我们会一点点深入介绍,欢迎大家关注golang学习网公众号,一起学习编程~
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
342 收藏
-
361 收藏
-
159 收藏
-
164 收藏
-
221 收藏
-
156 收藏
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习
-
- 妩媚的帆布鞋
- 这篇技术文章真及时,太细致了,很好,收藏了,关注作者大大了!希望作者大大能多写数据库相关的文章。
- 2023-04-27 01:04:27
-
- 饱满的小懒猪
- 太全面了,已收藏,感谢作者的这篇技术贴,我会继续支持!
- 2023-04-13 19:11:23
-
- 虚幻的樱桃
- 感谢大佬分享,一直没懂这个问题,但其实工作中常常有遇到...不过今天到这,看完之后很有帮助,总算是懂了,感谢老哥分享文章!
- 2023-01-25 10:57:12
-
- 伶俐的香菇
- 这篇文章内容出现的刚刚好,太细致了,很有用,mark,关注老哥了!希望老哥能多写数据库相关的文章。
- 2023-01-20 04:51:35
-
- 大意的皮带
- 这篇博文太及时了,up主加油!
- 2023-01-15 14:43:14
-
- 无限的小鸭子
- 这篇技术贴真及时,太全面了,很好,码起来,关注up主了!希望up主能多写数据库相关的文章。
- 2023-01-07 15:00:24