Mantis - Quercus
Viewing Issue Advanced Details
2696 minor always 05-26-08 11:34 05-28-08 14:36
koreth  
ferg  
normal  
closed 3.1.7  
fixed  
none    
none 3.2.0  
0002696: apc_cache_info() doesn't return contents of APC
<?php
$foo = apc_cache_info('user', FALSE);
print '
';
print_r($foo);
print '
';


In Quercus, this prints an array with an empty 'cache_list' member. In vanilla PHP, 'cache_list' is an array of metadata about each of the user APC entries. We use this for some statistical and diagnostic displays (examining which parts of our code makes the most use of APC, etc.)

Obviously Quercus doesn't use APC to cache the PHP source code, so I don't expect that part of it to work, but we should be able to dump out the user cache contents.

Notes
(0003105)
ferg   
05-28-08 14:36   
php/4207