内容简介:节省云服务器(VPS)的内存
大家一般都买个 vps 来放个主人主页、公司官网什么的,内存一般都不大,比如 1GB 什么的。估计总是发现装完 LAMP 就基本上内存全用光了。
在这里分享两个小 tips.
mysql
在 my.conf
中加入以下配置,关掉性能优化。嗯,反正官网一天也来不了几十个UV,关了没点问题。
[mysqld] performance_schema=off
这样能节省三四百兆内存。
apache
apache 会预启动几条进程,也要占用一些内存,我们可以调小点数量。在 apache2.conf
尾部加入以下配置:
<IfModule mpm_prefork_module> StartServers 1 MinSpareServers 1 MaxSpareServers 3 MaxClients 10 MaxRequestsPerChild 3000 </IfModule> <IfModule mpm_worker_module> StartServers 1 MinSpareThreads 5 MaxSpareThreads 15 ThreadLimit 25 ThreadsPerChild 5 MaxClients 25 MaxRequestsPerChild 200 </IfModule>
也能省下来不少内存。
以上所述就是小编给大家介绍的《节省云服务器(VPS)的内存》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- pdfjs优化,实现按需加载,节省流量和内存
- Facebook 开源 F14:更快速、更节省内存的哈希表
- 为节省内存,Firefox 将用新方式阻止加载没用到的标签页
- Java 代码热更新工具,节省宝贵时间
- 运维帮手:FlashOps帮我节省时间
- 节省你生命的一个小技术No.193
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Data Structures and Algorithms
Alfred V. Aho、Jeffrey D. Ullman、John E. Hopcroft / Addison Wesley / 1983-1-11 / USD 74.20
The authors' treatment of data structures in Data Structures and Algorithms is unified by an informal notion of "abstract data types," allowing readers to compare different implementations of the same......一起来看看 《Data Structures and Algorithms》 这本书的介绍吧!