Changeset 407
- Timestamp:
- 02/18/10 16:00:05 (5 months ago)
- Files:
-
- eaccelerator/trunk/NEWS (modified) (2 diffs)
- eaccelerator/trunk/README (modified) (10 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/NEWS
r381 r407 1 Jan 26, 2010 - Bart Vanbrabant1 February 4, 2010 - Bart Vanbrabant 2 2 ------------------------------ 3 3 4 * Release 0.9.6 rc24 * Release 0.9.6 5 5 The theme of this release is: back to basics! All non essential functions 6 are removed from eAccelerator. This means that the keys, content and 7 session functions. 6 are removed from eAccelerator. This means the keys, content and 7 session functions have been removed. There are other (and probably better) 8 alternatives for this functionality available by now. 8 9 9 10 Changes in this version: … … 11 12 - The encoder is removed 12 13 - The user cache function are removed 13 - The minimal PHP version supported is no 5.114 - The minimal PHP version supported is now 5.1 14 15 - Some internal refactoring to clean the code up 15 16 - Fixed some bugs (and probably added some) eaccelerator/trunk/README
r345 r407 4 4 What is eAccelerator? 5 5 ---------------------- 6 eAccelerator is a free open source PHP accelerator, optimizer, encoder and 7 dynamic content cache for PHP. It increases performance of PHP scripts by 8 caching them in compiled state, so that the overhead of compiling is almost 9 completely eliminated. It also optimises the script to speed up execution 10 of PHP scripts. eAccelerator typically reduces server load and increases the 11 speed of your PHP code by 1-10 times. 6 eAccelerator is a free open source PHP accelerator and optimizer for PHP. It 7 increases the performance of PHP scripts by caching them in compiled state, 8 so the overhead of compiling is almost completely eliminated. It also 9 optimizes the scripts to speed up execution. 10 11 eAccelerator typically reduces server load and increases the speed of your 12 PHP code by 1-10 times. 12 13 13 14 eAccelerator is a fork of TurckMMCache … … 28 29 webservers like lighttpd. 29 30 30 31 Here are some other products that provide the same functionality:32 33 - Zend Performance Suite (http://www.zend.com/)34 - Alternative PHP Cache (http://pecl.php.net/package/APC)35 31 36 32 Download … … 49 45 Compatibility 50 46 ------------- 51 eAccelerator has been reported working with php5.1 and higher.52 It is being used on Linux, FreeBSD, Mac OS X, Solaris and Windows53 with apache 1.3 and 2, lighttpd and IIS.47 eAccelerator works with php version 5.1 and higher. 48 It is being used on Linux, FreeBSD, Mac OS X, Solaris and Windows 49 with Apache 1.3 and 2, lighttpd and IIS. 54 50 55 51 … … 57 53 ------------- 58 54 59 You can find more information about installation on eAccelerator website.60 http://eaccelerator.sourceforge.net/55 You can find more information about the installation of eAccelerator on our 56 website at http://www.eaccelerator.net/ 61 57 62 58 Note(1): for Microsoft Windows installation, please refer to README.win32 file. … … 91 87 To install as Zend extension: 92 88 93 zend_extension="/usr/lib/php 4/eaccelerator.so"89 zend_extension="/usr/lib/php5/eaccelerator.so" 94 90 eaccelerator.shm_size="16" 95 91 eaccelerator.cache_dir="/tmp/eaccelerator" … … 103 99 eaccelerator.shm_prune_period="0" 104 100 eaccelerator.shm_only="0" 105 eaccelerator.compress="1"106 eaccelerator.compress_level="9"107 101 108 102 If you use thread safe build of PHP you must use "zend_extension_ts" instead … … 123 117 eaccelerator.shm_prune_period="0" 124 118 eaccelerator.shm_only="0" 125 eaccelerator.compress="1"126 eaccelerator.compress_level="9"127 119 128 120 Step 4. Creating cache directory … … 191 183 on session data and content caching. Default value is "0" that means - use 192 184 disk and shared memory for caching. 193 194 eaccelerator.compress195 Enables or disables cached content compression. Default value is "1" that196 means enable compression.197 198 eaccelerator.compress_level199 Compression level used for content caching. Default value is "9" which is200 the maximum value201 202 eaccelerator.name_space203 A string that's prepended to all keys. This allows two applications that204 use the same key names to run on the same host by setting this in .htaccess205 or in the main configuration file for the whole webserver.206 207 eaccelerator.keys208 eaccelerator.sessions209 eaccelerator.content210 Determine where keys, session data and content will be cached. The possible211 values are:212 "shm_and_disk" - cache data in shared memory and on disk (default value)213 "shm" - cache data in shared memory or on disk if shared memory214 is full or data size greater then "eaccelerator.shm_max"215 "shm_only" - cache data in shared memory216 "disk_only" - cache data on disk217 "none" - don't cache data218 185 219 186 eaccelerator.allowed_admin_path … … 231 198 can't control eAccelerator. 232 199 You can set the username and password needed to access the control-panel in 233 the control.php file. 200 the control.php file. By default the username is administrator and the password 201 is eAccelerator. 234 202 235 203 When you compile eAccelerator with --with-eaccelerator-disassembler you need … … 248 216 ---------- 249 217 You can contact us with questions, patches or bugs, by sending an email to 250 Bart Vanbrabant < zoeloelip at users.sourceforge.net>218 Bart Vanbrabant <bart at vanbrabant.eu>