Tagged Questions
The opcode-cache tag has no wiki summary.
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 ...
9
votes
2answers
2k views
Do PHP opcode cache work with __autoload?
Sorry if this is basic, I am trying to learn as much as I can about OO in PHP and I am slowly learning how to use it (very limited).
So I am wanting to know if __autoload() has any affect on PHP ...
8
votes
1answer
1k views
PHP5 Frameworks: Autoloading and Opcode Caching
A number of frameworks utilize spl_autoload_register() for dynamically loading classes (i.e. controllers and models). There are a couple of posts on the issue of autoloading and opcode caching. One ...
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.
...
3
votes
3answers
1k views
Is there a way to measure parse time in PHP?
Optimization of PHP code via runtime benchmarking is straight forward. Keep track of $start and $end times via microtime() around a code block - I am not looking for an answer that involves ...
2
votes
1answer
402 views
Disable APC Cache for cached files?
I have a quite large website, in which there is a forum powered by phpBB. I have APC enabled with 1Gb of RAM. phpBB generates a lot of php files of cache (60 000-70 000 in my case), and they rapidly ...
2
votes
5answers
1k views
Configuring APC with Drupal
I am working on a website which is hosted on a VPS with CENTOS 5.4 i686 virtuozzo installed. I have a drupal installation on the server which gets around 100s of authenticated users at the same ...
2
votes
1answer
2k views
APC Hits/Misses and configuration
What are "Hits & Misses" in reference to APC opcode caching? I've installed APC and it's running great, but I've got "some" misses and I'm wondering if that's "bad". Also, I am running Openx and, ...
2
votes
3answers
2k views
Which one would you choose ; XCache or APC?
I need a opcode-cache in my project. Also i will use for the datastore (mysql returned row) cache ? Which is the best for you and WHY ?
1
vote
1answer
341 views
Apc extension not working on php 5.3.3
opcode caching talk.I have WAMP server 2.1 running PHP 5.3.3.I'm using apache benchmark to test the improvement APC adds when applied to my php scripts.
ab -n 10 -c 5 ...
1
vote
2answers
929 views
Does APC opcode cache work with PHP-FPM?
How well does APC (latest version 3.1.5) work with PHP FastCGI (especially PHP-FPM)?
There are a lot of articles stating that they don't work together pretty well but these references are also very ...
1
vote
3answers
371 views
Python doesn't have opcode cacher?
I'm currently using PHP. I plan to start using Django for some of my next project.
But I don't have any experience with Python. After some searching, I still can't find a Python opcode cacher.
...
1
vote
2answers
766 views
Simple PHP opcode caching solution which does not need compilation?
I have a PHP site where all pages include an 57K generated PHP file. I'm thinking of using an opcode cache, so the file doesn't need to be parsed for every time a page is loaded (I assume loading the ...
0
votes
0answers
40 views
How to perform OpCode Caching with APC
I have several files, for which I need opcode caching, So those files should not compile each time.
For example: I have file called upload_file.php, which I want to cache using opcode technique.
I ...
0
votes
2answers
489 views
mod_fcgid with php opcode caching
I have been using apache web server with mpm-worker and mod_fcgid.
I have read about mod_fcgid that it can not make use of opcode caching.
...
0
votes
1answer
507 views
APC: opcode cache vs. user cache - set separate limits
I am trying to move from the typical combination of APC (for opcode) and Memcache (for my userdata) to a purely apc based cache. Given my usage structure it makes sense and performance is higher.
...
0
votes
3answers
3k views
apc.filters by path?
How would I use the apc.filters parameter in APC opcode caching to not cache certain paths? For example, I want caching to be active for anything under the path:
"/var/www/vhosts"
and exclude paths ...
0
votes
4answers
545 views
What are the advantages/disadvantages of monolithic PHP coding versus small specialized php scripts?
I have historically used a monolithic approach to PHP coding.
That is, I write one index.php, with an average size of 70k-250k, and use
mod_rewrite
to turn the rest of the
REQUEST_URI
into ...
0
votes
1answer
234 views
Basic PHP Opcode Cache Question
Currently on a very large project that I plan to never re-ue for another site, I have the sites name hardcoded into the files everywhere, now if I were ever to change the sitename it would take a lot ...
0
votes
4answers
284 views
Opcode cache impact on memory ussage
Can anyone tell me what is the memory usage overhead associated with PHP opcode cache?
I've seen a lot of reviews of opcode cache but all of them only concentrate on the performance increace. I have a ...