| 
        php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits             
             [2013-02-18 23:39 UTC] gopalv@php.net
  [2013-05-28 08:38 UTC] tomasz at ulanowski dot info
  [2016-11-18 21:36 UTC] kalle@php.net
 
-Status: Open
+Status: Wont fix
  [2016-11-18 21:36 UTC] kalle@php.net
  | 
    |||||||||||||||||||||||||||||||||||||
            
                 
                Copyright © 2001-2025 The PHP GroupAll rights reserved.  | 
        Last updated: Tue Nov 04 01:00:02 2025 UTC | 
Description: ------------ We are using APC with a very large user cache--52503 (482.9 MBytes) at this moment. When the cache is very large, calling apc_cache_info('user') freezes the entire web server. It may or may not be related to the fact that we are caching a lot of objects in the cache. This issue was particularly tricky to diagnose, because the only thing we could find in our error log was "[error] server reached MaxClients setting, consider raising the MaxClients setting". Thankfully, there is now the APCIterator, so updating our code was a breeze, but this problem should probably be addressed, particularly because the apc.php page calls apc_cache_info('user') when clicking on the "User Cache Entries" tab. Reproduce code: --------------- $cache = apc_cache_info('user'); Actual result: -------------- Server locks up until it is restarted.