I've been using APC for Opcode optimization and data storage for few time until I read that OPCache
is directly included in PHP since PHP5.5. Thus, I switched to OPCache + APCu.
But small changes in code like adding a 'die(var_dump($some_var));
' for debugging aren't taken into account but after some time.
Should I turn OPCache off in development mode ?