Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

39
votes
10answers
30k 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 ...
4
votes
3answers
2k views

Memcache control panel?

We've been running eAccelerator on each of 3 webservers and are looking to move to a memcache pool across all 3, hopefully reducing by about 2/3 our db lookups. One of the handy things about ...
2
votes
2answers
63 views

Is it still worthwhile to install the 'eaccelerator' PHP compiler cache?

Back in the PHP 4 Jurassic Era, I often installed a PHP extension called 'eaccelerator' to boost the performance of PHP by caching the compiled byte code. I've read elsewhere that with PHP 5, the ...
2
votes
2answers
86 views

eaccelerator 0.9.6.1 and --with-eaccelerator-shared-memory doesn't work

I tried to compile eaccelerator 0.9.6.1 with --with-eaccelerator-shared-memory flag but after: ./configure --with-eaccelerator-shared-memory got this message: configure: WARNING: unrecognized ...
2
votes
4answers
499 views

Choosing a PHP caching technique: output caching into files vs. opcode caching

I've heard of two caching techniques for the PHP code: When a PHP script generates output it stores it into local files. When the script is called again it check whether the file with previous ...
1
vote
3answers
80 views

Should I use PHP accelerator (eAccelerator, APC, etc) in development environment?

I think the question speaks for itself.. My concern is, we would be modifying some PHP files here and there. Will the accelerator(s) know that it needs to recompile modified files (i assume they ...
1
vote
0answers
116 views

eAccelerator will only show Cached Scripts: 1

I'm trying to reduce the load of PHP on my website and increase the speed with PHP caching. I've currently got eAccelerator installed and running with my PHP(according to php-v & phpinfo), ...
1
vote
1answer
235 views

eAccelerator php eaccelerator_put

i've got shared hosting with eAccelerator > eAccelerator > > eAccelerator support enabled > Version 0.9.6.1 Caching Enabled true > Optimizer Enabled true Check mtime > Enabled ...
1
vote
2answers
258 views

PHP eAccelerator and real-time data

I have this application written in PHP, I'm considering on using eAccelerator for optimizing the application. My dilemma is that, this application works with real-time data (daily there are around 6 ...
1
vote
1answer
144 views

how the opcode cache actually works?

im doing my final project and its about optimizing web performance (focus on caching). i plan to use eaccelearator as a tool in my final project. i need to know the background process of it, the flow ...
0
votes
1answer
205 views

How to install eAccelerator for XAMPP on Mac OS X 10.7 Lion

I had some problems installing eAccelerator on XAMPP installation of Mac OS X Lion. First, i had problem like this: Mohd-Yusufs-MacBook-Pro:APC-3.1.9 mohdyusuf$ $PHP_PREFIX/bin/phpize grep: ...
0
votes
2answers
96 views

How to get php class functions' comments?

I need to get a comment of the particular function in php class, for example: /* Some commets for a class */ class Foo extends Bar { function __construct() {} // a single line comment to the ...
0
votes
0answers
36 views

Eaccelerator caches only one web site, why?

I installed eaccelerator 0.9.6.1 and when I checked cached scripts I can see cached PHP files only from one of my web sites. It's a wordpress blog. I run about 15 domains on this server all of them ...
0
votes
1answer
66 views

How come eAccelerator works after changing files even though cache is on?

I have eAccelerator installed on an apache web server for PHP. If I look at the phpinfo() output, I can see that all files are cached. I wonder to myself, If they are cached, how come when I make ...
0
votes
4answers
124 views

PHP variable caching

I have some data in MySQL database that are static most of the time. They are mainly almost static values like cities, states, and ethnic. I want to cache them in a variable, preferebly in memory, so ...
0
votes
0answers
55 views

eaccelerator : # hits getting reset every now and then

I just put eAccelerator up on my vps today - i'm running php w/fastcgi. in the eaccelerator interface, i see hits for files increase to 400-500 and then an hour later it will be down to 100-150, ...
0
votes
2answers
191 views

Good optimizer for CPU and memory intensive command line PHP scripts?

I have optimized the scripts at most possible bottlenecks. It is difficult to port the code to other language, so that is not a good solution. are there any opcode generators, optimizers that I can ...
0
votes
4answers
361 views

delete cache by name in apc / memcache / eaccelerator

lets assume i have these variables saved in apc,memcached and eaccelerator: article_1_0 article_1_1 article_3_2 article_3_3 article_2_4 How can i delete all cached variables that starts with ...
0
votes
0answers
534 views

PHP eAccelerator: shmmax error

I installed eAccelerator and if I uncomment extension="eaccelerator.so" in PHP and restart Apache if fails and in the error.log stands eAccelerator: shmmax should be at least 2MB If I set ...
0
votes
1answer
35 views

PHP eAccelerator include_path issue

OK guys, I have a weird problem, I have been using set_include_path before eaccelerator and all workded great but now I can't get it to working, its not setting my path and also sometimes when use ...
0
votes
1answer
225 views

eAccelerator using FastCGI, control panel doesn't work

I've eaccelerator running on my server, with PHP under FastCGI. All works fine, but i can't access to eaccelerator control panel (it shows the user/pass dialog, but it doesn't accept any) if i ...
0
votes
5answers
192 views

High Performance PHP

I am about to launch a CodeIgniter web application. Any recommendations on what I should do to maximize performance of my application? I'm thinking memcached and an accelerator (though I am not sure ...
0
votes
1answer
177 views

Why doesn't eAccelerator cache to harddrive?

When looking at the set folder in php.ini for eAccelerator to use, nothing is there. No hidden files as well. Directory is writable as well: eaccelerator.cache_dir = "c:/wamp/tmp/eaccelerator"' ...
0
votes
1answer
164 views

Module 'eAccelerator' already loaded php warning

I'm getting this PHP warning in my error_log and want to get it fixed. I'm told it is loaded within php.ini which I've verified as well as a bunch of configuration settings for the module. I'd like ...
-1
votes
1answer
457 views

eAccelerator doesn't always improve performance?

Ok I have read a lot of posts and articles on how GREAT eAccelerator is, I tested it on my home dev server and it slowed my pages down pretty noticably, could it be because: I don't have a lot of ...