Re: [PHP] APC opcode cache behavior

2013-02-14 Thread ma...@behnke.biz
Aaron Holmes aa...@aaronholmes.net hat am 14. Februar 2013 um 03:53 geschrieben: Hello, I'm trying to find some information on APC opcode cache behavior. We noticed an issue where, when switching symlinks to different versions of sites, old code was running from the previous version after

Re: [PHP] APC opcode cache behavior

2013-02-14 Thread Camilo Sperberg
On 14 feb. 2013, at 15:19, ma...@behnke.biz ma...@behnke.biz wrote: Aaron Holmes aa...@aaronholmes.net hat am 14. Februar 2013 um 03:53 geschrieben: Hello, I'm trying to find some information on APC opcode cache behavior. We noticed an issue where, when switching symlinks to different

Re: [PHP] APC opcode cache behavior

2013-02-14 Thread Marco Behnke
Am 14.02.13 16:05, schrieb Camilo Sperberg: You can also write a little script that clears the APC cache, something in the line of: #!/usr/bin/php ?php apc_clear_cache(); And execute this script each time you deploy. (can also be a command such as php -r apc_clear_cache();). This way

Re: [PHP] APC opcode cache behavior

2013-02-14 Thread Camilo Sperberg
On 14 feb. 2013, at 20:32, Marco Behnke ma...@behnke.biz wrote: Am 14.02.13 16:05, schrieb Camilo Sperberg: You can also write a little script that clears the APC cache, something in the line of: #!/usr/bin/php ?php apc_clear_cache(); And execute this script each time you deploy.

[PHP] APC opcode cache behavior

2013-02-13 Thread Aaron Holmes
Hello, I'm trying to find some information on APC opcode cache behavior. We noticed an issue where, when switching symlinks to different versions of sites, old code was running from the previous version after switching the symlink. Anyone know where I can find more information on this?