Changeset 407

Show
Ignore:
Timestamp:
02/18/10 16:00:05 (5 months ago)
Author:
hans
Message:

small documentation updates

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • eaccelerator/trunk/NEWS

    r381 r407  
    1 Jan 26, 2010 - Bart Vanbrabant 
     1February 4, 2010 - Bart Vanbrabant 
    22------------------------------ 
    33 
    4  * Release 0.9.6 rc2 
     4 * Release 0.9.6 
    55    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. 
    89 
    910    Changes in this version: 
     
    1112        - The encoder is removed 
    1213        - The user cache function are removed 
    13         - The minimal PHP version supported is no 5.1 
     14        - The minimal PHP version supported is now 5.1 
    1415        - Some internal refactoring to clean the code up 
    1516        - Fixed some bugs (and probably added some) 
  • eaccelerator/trunk/README

    r345 r407  
    44What is eAccelerator? 
    55---------------------- 
    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. 
     6eAccelerator is a free open source PHP accelerator and optimizer for PHP. It 
     7increases the performance of PHP scripts by caching them in compiled state, 
     8so the overhead of compiling  is  almost completely eliminated. It also 
     9optimizes the scripts to speed up execution. 
     10 
     11eAccelerator typically reduces server load and increases the speed of your 
     12PHP code by 1-10 times. 
    1213 
    1314eAccelerator is a fork of TurckMMCache  
     
    2829webservers like lighttpd. 
    2930 
    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) 
    3531 
    3632Download 
     
    4945Compatibility 
    5046------------- 
    51 eAccelerator has been reported working with php 5.1 and higher. 
    52 It is being used on Linux, FreeBSD, MacOS X, Solaris and Windows  
    53 with apache 1.3 and 2, lighttpd and IIS. 
     47eAccelerator works with php version 5.1 and higher. 
     48It is being used on Linux, FreeBSD, Mac OS X, Solaris and Windows  
     49with Apache 1.3 and 2, lighttpd and IIS. 
    5450 
    5551 
     
    5753------------- 
    5854 
    59 You can find more information about installation on eAccelerator website. 
    60 http://eaccelerator.sourceforge.net/ 
     55You can find more information about the installation of eAccelerator on our 
     56website at http://www.eaccelerator.net/ 
    6157 
    6258Note(1): for Microsoft Windows installation, please refer to README.win32 file. 
     
    9187To install as Zend extension: 
    9288 
    93   zend_extension="/usr/lib/php4/eaccelerator.so" 
     89  zend_extension="/usr/lib/php5/eaccelerator.so" 
    9490  eaccelerator.shm_size="16" 
    9591  eaccelerator.cache_dir="/tmp/eaccelerator" 
     
    10399  eaccelerator.shm_prune_period="0" 
    104100  eaccelerator.shm_only="0" 
    105   eaccelerator.compress="1" 
    106   eaccelerator.compress_level="9" 
    107101 
    108102  If you use thread safe build of PHP you must use "zend_extension_ts" instead 
     
    123117  eaccelerator.shm_prune_period="0" 
    124118  eaccelerator.shm_only="0" 
    125   eaccelerator.compress="1" 
    126   eaccelerator.compress_level="9"   
    127119 
    128120Step 4. Creating cache directory 
     
    191183    on session data and content caching. Default value is "0" that means -  use 
    192184    disk and shared memory for caching. 
    193  
    194 eaccelerator.compress 
    195     Enables or disables cached content compression. Default value is  "1"  that 
    196     means enable compression. 
    197  
    198 eaccelerator.compress_level 
    199     Compression level used for content caching.  Default value is "9" which  is 
    200     the maximum value 
    201  
    202 eaccelerator.name_space 
    203     A string that's prepended to all keys. This allows two applications that  
    204     use the same key names to run on the same host by setting this in .htaccess 
    205     or in the main configuration file for the whole webserver. 
    206      
    207 eaccelerator.keys 
    208 eaccelerator.sessions 
    209 eaccelerator.content 
    210     Determine where keys, session data and content will be cached. The possible 
    211     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 memory 
    214                      is full or data size greater then "eaccelerator.shm_max" 
    215     "shm_only"     - cache data in shared memory 
    216     "disk_only"    - cache data on disk 
    217     "none"         - don't cache data 
    218185 
    219186eaccelerator.allowed_admin_path 
     
    231198can't control eAccelerator. 
    232199You can set the username and password needed to access the control-panel in  
    233 the control.php file. 
     200the control.php file. By default the username is administrator and the password 
     201is eAccelerator. 
    234202 
    235203When you compile eAccelerator with --with-eaccelerator-disassembler you need  
     
    248216---------- 
    249217You can contact us with questions, patches or bugs, by sending an email to 
    250 Bart Vanbrabant <zoeloelip at users.sourceforge.net
     218Bart Vanbrabant <bart at vanbrabant.eu