php forum
php mysql forum
php mysql smarty
 
Topic Options
#285433 - 05/25/05 07:31 PM eAccelerator - A must have for any server with PHP!
Ythan Offline
Newbie

Registered: 10/26/02
Posts: 24
Loc: Westminster, CO, USA
I just wanted to take this opportunity to recommend an awesome program we've been using on our server for some time now. eAccelerator is a free, GPL'd program which increases the performance of PHP scripts by automatically caching them in a compiled state so that the overhead of compiling is almost completely eliminated. It also has a simple and powerful API for caching script output. For instance, you can cache an entire page for 30 seconds by adding this to the top of the script:<br /><br />
Code:
eaccelerator_cache_page($_SERVER['REQUEST_URI'],30);
<br /><br />You can also store variables in shared memory. This is really useful, for example to cache the results of a database query for 30 seconds:<br /><br />
Code:
$results = eaccelerator_get('results');<br />if (!$results){<br />	$table = mysql_query("SELECT * FROM sometable");<br />	while ($row = mysql_fetch_assoc($table)) {<br />   		$results[] = $row;<br />	}<br />	$eaccelerator_put('results', $results, 30);<br />}
<br /><br />On our site eAccelerator has made some features possible which would otherwise have been too resource intensive. It's been rock solid and the developers are working hard to ensure compatibility with PHP 5. A comparable product from Zend costs $1,000+ so don't forget to donate if you find it useful!<br /><br />Hope this helps,<br /><br />-Y
_________________________
Mushrooms

Top
#285434 - 05/27/05 04:20 PM Re: eAccelerator - A must have for any server with PHP! [Re: yoki]
JoshPet Offline
I type Like navaho

Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
Very interesting. Thanks!
_________________________
Joshua Pettit
www.JoshuaPettit.com
My abilities are for hire.

Top



Latest Posts
[7.2.1] - Naked shoutbox
by bellaonline
05/05/12 05:00 PM
[7.x] Stop Forum Spam Integration v0.4
by bellaonline
05/05/12 03:53 PM
Shout Box

(Views)Popular Topics
Known public proxy servers 1689885
Integrated Index Page (IIP) 5.3.1 555705
Finished-[6.5.2] Games Arcade Deluxe v1.9 501236
Integrated Index Page (IIP) 5.1.1 415112
TLD Bv2.1 Released - Threads Links Directory 396822
[6.0x] Who's Online 4.0.0 [Finished] 389412
Finished-[6.5.1] Integrated Index Page (IIP) 6.5 330423
Q & A 298663
Slash UBB 266936
[6.3.x] [beta] Hit Hack 2.0 227970
Forum Stats
13621 Members
59 Forums
37191 Topics
295716 Posts

Max Online: 686 @ 06/28/07 07:04 AM

 

 

 
fusionbb message board php hacks