php中設定記憶體的方法介紹

WBOY
發布: 2016-07-25 08:59:01
原創
1503 人瀏覽過
  1. query_cache_size=32M

  2. # The number of open tables for all threads. Increasing this value

  3. # increases the number of file descriptors that mysqld requires.
  4. # Therefore you have to make sure to set the amount of open files
  5. # allowed to at least 4096 in the variable "open-files-limit" in
  6. # section [mysqld_safe]
  7. table_cache=256

  8. # Maximum size for internal (in-memory) temporary tables. If a table

  9. # grows larger than this value, it is automatically converted to disk
  10. # based table This limitation is for a single table. There can be many
  11. # of them.
  12. tmp_table_size=5M

复制代码

另外,再介绍下PHP设置运行时内存大小的方法。

如果在php程序运行时出现如下的错误: Fatal error: Allowed memory size of 20971520 bytes exhausted (tried to allocate 7325604 bytes) in …(可用的内存为20971520 bytes,尝试分配。。。) 则说明运行时分配的内存不够,此时需要增加支撑php运行的内存了。

解决办法: 一、在php程序里动态分配内存

@ini_set(‘memory_limit’,’60M‘); //修改60M

二、php.ini 中配置

memory_limit = 20M //修改 20M

就介绍这些了,记得老板曾说过一句话,我相信你们的技术水平,如果遇到非常难以解决的问题,就适当发挥硬件的优势吧,哈哈,那就加内存,加Cpu,或者上更高配置机器吧。



來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!