php - How to check if opcode cache is running on a server? -
php - How to check if opcode cache is running on a server? -
is possible check if php opcode cache installed , running on server without having ssh access server? i've checked phpinfo() , can see no reference apc or eaccelerator, i'm aware there other opcode cache systems , not totally sure checking phpinfo() plenty allow me know 1 way or other.
var_dump(function_exists('apc_store')); or equivalent library of choice.
if using web server sapi, per usual, create sure restart server process after editing php.ini see new additions reflected.
php linux opcode
Comments
Post a Comment