Tagged Questions
The Alternative PHP Cache (APC) is a free and open opcode cache for PHP. Its goal is to provide a free, open, and robust framework for caching and optimizing PHP intermediate code.
39
votes
10answers
29k views
apc vs eaccelerator vs xcache
Im doing research on which one of these to use and I can't really find one that stands out. Eaccelerator is faster than APC, but APC is better maintained. Xcache is faster but the others have easier ...
38
votes
3answers
17k views
Memcached vs APC which one should I choose?
I ready this article: http://www.mysqlperformanceblog.com/2006/09/27/apc-or-memcached/ from way back when.. I want to get the best cacheing engine available so that my application is really fast. Of ...
26
votes
5answers
20k views
How to clear APC cache entries?
I need to clear all APC cache entries when I deploy a new version of the site.
APC.php has a button for clearing all opcode caches, but I don't see buttons for clearing all User Entries, or all System ...
18
votes
3answers
13k views
Warning: require_once() [function.require-once]: Unable to allocate memory for pool. in /path/to/file
I've occasionally run up against a server's memory allocation limit, particularly with a bloated application like Wordpress, but never encountered "Unable to allocate memory for pool" and having ...
11
votes
2answers
185 views
how does PHP opcode relate to the actually executed binary code?
test.php as plain text:
<?php
$x = "a";
echo $x;
test.php as opcode:
debian:~ php -d vld.active=1 -d vld.execute=0 -f test.php
Finding entry points
Branch analysis from position: 0
Return ...
11
votes
1answer
424 views
Programmatically rebuild .exd-files when loading VBA
After updating Microsoft Office 2007 to Office 2010 some custom VBA scripts embedded in our software failed to compile with the following error message:
Object library invalid or contains
...
10
votes
2answers
517 views
Does autoload really kill performance when using APC(latest versions/up to date). Benchmarks?
I am trying to find a definite answer to the question that autoload kills performance when using APC and why(benchmarks?)
P.S. Found this link using google/stackoverflow, but I am wondering if this ...
9
votes
3answers
2k views
PHP APC, educate me
I'm currently implementing memcached into my service but what keeps cropping up is the suggestion that I should also implement APC for caching of the actual code.
I have looked through the few ...
8
votes
5answers
346 views
APC and PHP - Broken Sites Due to Cache Mixing
I hope someone can give me a hand figuring this out. I have been running APC recently on some of my servers that host only one application and it's been working great. Unfortunately I went to run it ...
8
votes
6answers
2k views
sudo pecl install apc returns error
I run the command: sudo pecl install apc.
The file gets downloaded, the configuration succeeds, then make is launched and I get the following error.
/usr/include/php5/ext/pcre/php_pcre.h:29: fatal ...
7
votes
2answers
181 views
Why all my files are not cached with apc op code?
I'm using APC (3.1.9) and Zend Framework, however, only a bunch of file are being cached (something like 10 / 400).
Do you have any ideas? I'm using the factory options on a debian installation.
...
7
votes
4answers
303 views
Is it good to have Memcache, APC and Varnish on LAMP servers
I have 3 web servers I need to optimize. I currently have just a little over 2000 unique visitors a day and I want to improve performances on my servers to make sure when I will get more traffic ...
7
votes
3answers
2k views
PHP APC Potential Cache Slam Averted for Key
I'm receiving this error while trying to use apc_store(). I googled it and saw that this was APC timebomb bug and saw some fixes which suggested adding apc.slam_defense = Off; to php.ini.
I need to ...
7
votes
2answers
2k views
Does a graceful Apache restart clear APC?
Will calling
$ httpd graceful
clear out the APC cache, or do I have to do a full-blown
$ httpd restart
to do it? (Keeping in mind that I know there are better ways to do it, like calling ...
7
votes
2answers
2k views
PHP APC: What happens when APC cache is full?
What happens when you try to add a variable into APC and the APC cache is full? Does it automatically remove least used variable from the cache?
7
votes
6answers
10k views
APC for windows alternative download
I am trying to install APC on windows but the site http://pecl4win.php.net/ is down for a while now with the message:
The pecl4win build box is temporarily out of service. We're preparing a new ...
7
votes
3answers
12k views
How to share APC cache between several PHP processes when running under FastCGI?
I'm currently running several copies of PHP/FastCGI, with APC enabled (under Apache+mod_fastcgi, if that matters). Can I share cache between the processes? How can I check if it's shared already? ...
6
votes
1answer
69 views
what is APC internal debugging?
I got a prompt with Enable internal debugging in APC [no]:. While installing APC.
what is APC internal debugging?
Is is better to keep it enabled?
Tried to do a search but couldn't find ...
6
votes
4answers
459 views
apc_store isn't working between requests
$bar = 'BAR';
apc_store('foo', $bar);
var_dump(apc_fetch('foo'));
Within one request this work.
Now If i try to do a var_dump(apc_fetch('foo')); on another request it prints:
bool(false)
Any ...
6
votes
2answers
1k views
Why is APC incrementing “Cache full count” for User Cache even though it has plenty of memory available?
I've played with this for quite a while but am at a bit of a loss as to what to do. I'm using APC 3.1.3p1 on CentOs 5 with PHP 5.2.5. APC is acting as both the opcode cache and user cache. Mostly ...
6
votes
5answers
373 views
What is the best way to do server-side output caching in PHP?
I have a pretty complicated index.php now, and I would like to only run it once every hour. What is the best way to achieve this? Some ideas I've had
Put it in APC with apc_store($page, 60*60*) - I ...
6
votes
5answers
5k views
How to make APC (PHP Cache) work?
I've read about APC that it speeds up multiple php file sites. So I have this particular project in PHP with many files and i discover that require_once and parsing only class definitions (without ...
6
votes
2answers
2k views
How can I get PHP to use the same APC cache when invoked on the CLI and the web?
I'm using APC to cache user variables (with the apc_store/apc_fetch commands). I've also enabled APC for the CLI with the option "apc.enable_cli = 1". However, the CLI version of PHP seems to access a ...
5
votes
0answers
197 views
Symfony2 + Doctrine2 is not caching results of joined entities
I am using Symfony 2.0.7 with Doctrine 2.1 and have rather simple query (see below), where I want to cache results with APC (version 3.1.7, enabled 1GB of memory for it) via useResultCache(true, 600) ...
5
votes
2answers
90 views
Question of PHP cache vs compile
from my understanding, if you use a PHP caching program like APC, eAccelerator, etc. then opcodes will be stored in memory for faster execution upon subsequent requests. My question is, why wouldn't ...
5
votes
3answers
329 views
php caching techniques
Hi this is more of an information request really.
I'm currently working on a pretty large event listing website and have started thinking about some caching for the data sets being used.
I have been ...
5
votes
3answers
2k views
Optimize APC Caching
here is a link to how my APC is running : http://www.animefushigi.com/apc.php
As you can see, it fills up pretty quickly and my Cache Full Count goes over 1000 sometimes
My website uses Wordpress.
...
5
votes
1answer
2k views
PHP : apc_store doesn't work as intended
I have started to try APC to store some specific data on each webserver as an complement to memcached.
However, the following code piece is giving me headaches:
echo apc_store('key', 'value');
echo ...
5
votes
3answers
2k views
APC is showing 100% fragmentation
APC is showing 100% fragmentation. Is this bad?
Does it mean that it's not helping at all? What paths do I go down to improve situation?
Thanks in advance.
5
votes
7answers
6k views
best way to obtain a lock in php
I'm trying to update a variable in APC, and will be many processes trying to do that.
APC doesn't provide locking functionality, so I'm considering using other mechanisms... what I've found so far is ...
4
votes
4answers
4k views
Opcode (APC/XCache), Zend, Doctrine, and Autoloaders
I am trying to use either APC or XCache as an opcode to cache my php pages. I am using it with Zend and Doctrine and it's having a problem with the autoloader.
If I try with APC, I get the following:
...
4
votes
3answers
4k views
PHP APC in CLI mode
Does APC module in PHP when running in CLI mode support code optimization? For example, when I run a file with php -f <file> will the file be optimized with APC before executing or not? ...
4
votes
1answer
595 views
APC Enabled but Apache Still Opening Files?
I'm working on a high-traffic webserver farm serving dynamic PHP code which includes around 100 files on most requests. APC opcode cache is enabled, include_once_override is enabled, and I have ...
4
votes
6answers
778 views
Problems with APC on publish
We've recently enabled APC on our servers, and occasionally when we publish new code or changes we discover that the source files that were changed start throwing errors that aren't reflected in the ...
3
votes
2answers
131 views
Load balancing and APC
I am interested in a scenario where webservers serving a PHP application is set up with a load balancer.
There will be multiple webservers with APC behind the load balancer. All requests will have to ...
3
votes
1answer
36 views
Difference between apc_add and apc_store?
I don't see any in the PHP docs:
http://www.php.net/manual/en/function.apc-store.php
http://www.php.net/manual/en/function.apc-add.php
Am I missing something here? When should I use each one?
And ...
3
votes
3answers
465 views
Symfony2 performance comparison, Windows and Linux
I have a question about Symfony2 performance.
I have been developing with Symfony2 under Ubuntu 11.04 for a few weeks now, Apache 2.2.17, PHP 5.3.5, APC 3.1.9, no xDebug
On the dev environment, the ...
3
votes
1answer
112 views
Will simply installing and enabling APC on PHP speed up my code?
I have been looking into caching and other solutions to speed up my server. One thing I have noticed is that APC seems to be mentioned again and again as a good solution. Of course, I understand there ...
3
votes
1answer
486 views
APC install with EasyPHP
I've been tying to follow this guide for integrating Doctrine 2 and CI 2.
all was good until i ran "php doctrine-cli.php orm:generate-proxies" from a cmd,
and got this error Fatal error: Call to ...
3
votes
2answers
183 views
No performance gain with APC on WampServer
I'm working on a Windows workstation, on which I use WampServer as my development platform, to write PHP applications which are then run on Linux.
I'm pretty used to APC on Linux, which is blazing ...
3
votes
1answer
212 views
PHP spiking cpu usage
I was testing my site with Jmeter to see how hundred threads would affect site performance and tested it with apache and mod_php and nginx with fastcgi. I noticed that the bottlebeck was always cpu in ...
3
votes
3answers
155 views
Do I have to change my source code to use xcache or other PHP opcode cacher?
I would like to use a PHP opcode cache, like APC and XCache.
TO have benefit from this cachers, do I have to change something on my php code or just install one of them?
I have seen there are APIs, ...
3
votes
3answers
964 views
APC doesn't cache files, but caches user data
Apc doesn't cache files, it only caches user data. When I tested on localhost, APC cached all files I used. But it doesn't work on my shared hosting. Is this a configuration issue?
These are the ...
3
votes
3answers
474 views
How to prevent Apache hangs when PHP APC cache completely fills up?
When APC cache is full, it hangs Apache. Apache responds to requests, however waits forever for APC cache to free some resources, but this will never happen.
I run every 10 minutes CRON job with my ...
3
votes
2answers
1k views
how to check if APC opcode is working fine in PHP?
I am using PHP with APC cache enabled
apc.cache_by_default => On
apc.enabled => On
apc.ttl => 7200
now how can i know if it is using opcode 100%.
for example let us say that i have this php file
...
3
votes
2answers
597 views
PHP “apc_store” and “apc_fetch” are not working as expected
I was trying to use APC but it doesn't seem to work as I expected.
file1:
$bar = 'BAR';
apc_store('foo', $bar, 3600);
var_dump(apc_fetch('foo')); // It works here. Displays BAR
file2:
...
3
votes
1answer
2k views
Difference between Memcache, APC, XCache and other alternatives I've not heard of
At work, we've recently started designing an application to me "large scale" (we're engineering for the potential to serve up many millions of hits a day). One of the senior devs and the sysadmin ...
3
votes
4answers
625 views
Session problems when APC is turned on
We have a problem with PHP session when APC is enabled on our server.
The app works great without APC. However, since we enabled APC, the sessions seems to be getting mixed up when the server ...
3
votes
3answers
686 views
do we need to restart apache + APC after new version deployment of app?
when we deploy our app, we simply create a new folder and point a symbolic link to it, so apache will always find its way to the latest build.
However, we get strange errors when we deploy and ...
3
votes
3answers
3k views
Locating memory leak in Apache httpd process, PHP/Doctrine-based application
I have a PHP application using these components:
Apache 2.2.3-31 on Centos 5.4
PHP 5.2.10
Xdebug 2.0.5 with Remote Debugging enabled
APC 3.0.19
Doctrine ORM for PHP 1.2.1 using Query Caching and ...