APC 没有缓存很多文件

APC 没有缓存很多文件

我在 Linode 的 VPS 上有一个运行着 Drupal 网站,使用的是 PHP 5.2.10 和 APC 3.1.6。

它从不缓存超过 25 个文件,并且几乎不使用任何可用内存。Drupal 有数百个 PHP 文件。我有另一台服务器,APC 似乎运行良好,确实缓存了数百个文件。该网站的唯一区别是它运行的是 Ubuntu 10.04 和 php 5.3.2。配置设置相同。

哪里出了问题?我将在下面粘贴 apc.php 中的配置。这是在触及 Drupal 的多个部分之后。

APC Version 3.1.6
PHP Version 5.2.10-2ubuntu6.5
APC Host    xxx.example.com
Server Software Apache/2.2.12 (Ubuntu)
Shared Memory   1 Segment(s) with 32.0 MBytes
(mmap memory, pthread mutex locking)
Start Time  2010/12/02 11:32:17
Uptime  3 minutes
File Upload Support 1
File Cache Information
Cached Files    21 ( 1.4 MBytes)
Hits    169
Misses  21
Request Rate (hits, misses) 1.00 cache requests/second
Hit Rate    0.89 cache requests/second
Miss Rate   0.11 cache requests/second
Insert Rate 0.17 cache requests/second
Cache full count    0
User Cache Information
Cached Variables    0 ( 0.0 Bytes)
Hits    0
Misses  0
Request Rate (hits, misses) 0.00 cache requests/second
Hit Rate    0.00 cache requests/second
Miss Rate   0.00 cache requests/second
Insert Rate 0.00 cache requests/second
Cache full count    0
Runtime Settings
apc.cache_by_default    1
apc.canonicalize    1
apc.coredump_unmap  0
apc.enable_cli  0
apc.enabled 1
apc.file_md5    0
apc.file_update_protection  2
apc.filters 
apc.gc_ttl  3600
apc.include_once_override   0
apc.lazy_classes    0
apc.lazy_functions  0
apc.max_file_size   1M
apc.mmap_file_mask  
apc.num_files_hint  1000
apc.preload_path    
apc.report_autofilter   0
apc.rfc1867 0
apc.rfc1867_freq    0
apc.rfc1867_name    APC_UPLOAD_PROGRESS
apc.rfc1867_prefix  upload_
apc.rfc1867_ttl 3600
apc.shm_segments    1
apc.shm_size    32M
apc.slam_defense    1
apc.stat    1
apc.stat_ctime  0
apc.ttl 0
apc.use_request_time    1
apc.user_entries_hint   4096
apc.user_ttl    0
apc.write_lock  1

答案1

这可能是 apc 的一个错误。或者可能是网络服务器的问题,但其他使用 drupal 的人也遇到了这种情况。

http://groups.drupal.org/node/113594#comment-368674

答案2

在配置文件中增加这两个值:apc.shm_segments 1 apc.shm_size 32M

您需要重新启动 php/apache 才能看到效果。

答案3

为 APC 提供更多内存,例如从 1Gb 开始,然后检查其使用情况。APC 必须拥有比其实际使用的更多的内存。

APC 不会缓存大于 1M 的文件,你可以放心地将此选项增加到 20M apc.max_file_size 1M

切勿使用 TTL 0 apc.ttl=7200 apc.user_ttl=7200

你可以查看我对这个问题的回答(倒数第二个) https://stackoverflow.com/questions/3723316/warning-require-once-function-require-once-unable-to-allocate-memory-for-p

相关内容