SOURCES: eaccelerator.ini

gotar gotar at pld-linux.org
Sat Jun 9 01:24:08 CEST 2007


Author: gotar                        Date: Fri Jun  8 23:24:08 2007 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:


---- Files affected:
SOURCES:
   eaccelerator.ini (1.6 -> 1.7) 

---- Diffs:

================================================================
Index: SOURCES/eaccelerator.ini
diff -u SOURCES/eaccelerator.ini:1.6 SOURCES/eaccelerator.ini:1.7
--- SOURCES/eaccelerator.ini:1.6	Sun Sep 11 23:07:56 2005
+++ SOURCES/eaccelerator.ini	Sat Jun  9 01:24:03 2007
@@ -16,80 +16,80 @@
 ; You must uncomment one (and only one) line from the following to load
 ; the eAccelerator extension.
 
-eaccelerator.shm_size = "64"
-;The amount of shared memory (in megabytes) that eAccelerator will use.
+; The amount of shared memory (in megabytes) that eAccelerator will use.
 ; "0" means OS default. Default value is "0".
+eaccelerator.shm_size = "64"
 
-eaccelerator.cache_dir = "/var/cache/eaccelerator"
 ; The directory that is used for disk cache. eAccelerator stores precompiled
-; code, session data, content and user entries here. The same data can also
-; be stored in shared memory (for more quick access). Default value is
+; code, session data, content and user entries here. The same data can be
+; stored in shared memory also (for more quick access). Default value is
 ; "/tmp/eaccelerator".
+eaccelerator.cache_dir = "/var/cache/eaccelerator"
 
+; Enables or disables eAccelerator. Should be "1" for enabling or
+; "0" for disabling. Default value is "1".
 eaccelerator.enable = "1"
-;Enables or disables eAccelerator. Should be "1" for enabling or "0" for
-; disabling. Default value is "1".
 
+; Enables or disables internal peephole optimizer which may speed up code
+; execution. Should be "1" for enabling or "0" for disabling.
+; Default value is "1".
 eaccelerator.optimizer = "1"
-;Enables or disables internal peephole optimizer which may speed up code
-; execution. Should be "1" for enabling or "0" for disabling. Default
-; value is "1".
 
+; Enables or disables debug logging. Setting this to 1 will print information
+; to the log file about the cach hits of a file.
 eaccelerator.debug = "0"
-;Enables or disables debug logging. Should be "1" for enabling or "0" for
-; disabling. Default value is "0".
 
-eaccelerator.check_mtime = "1"
-;Enables or disables PHP file modification checking. Should be "1" for
+; Enables or disables PHP file modification checking. Should be "1" for
 ; enabling or "0" for disabling. You should set it to "1" if you want to
 ; recompile PHP files after modification. Default value is "1".
+eaccelerator.check_mtime = "1"
 
-eaccelerator.filter = ""
-;Determines which PHP files must be cached. You may specify a pattern
-;(for example "*.php *.phtml") which specifies files to cache or exclude.
+; Determines which PHP files must be cached. You may specify a pattern
+; (for example "*.php *.phtml") which specifies files to cache or exclude.
 ; If the pattern starts with the character "!", the files that match this
 ; pattern wil be excluded. Default value is "" which means - all PHP scripts will be cached.
+eaccelerator.filter = ""
 
-eaccelerator.shm_max = "0"
-;Disables putting large values into shared memory by "eaccelerator_put()"
+; Disables putting large values into shared memory by "eaccelerator_put()"
 ; function. It indicates the largest allowed size in bytes (10240, 10K, 1M).
 ; A "0" disables the limit. Default value is "0".
+eaccelerator.shm_max = "0"
 
-eaccelerator.shm_ttl = "0"
-;When eAccelerator fails to get shared memory for a new script it removes
+; When eAccelerator fails to get shared memory for a new script it removes
 ; all scripts from shared memory which were not accessed at least "shm_ttl"
 ; seconds. Default value is "0" which means - don't remove any files from shared memory.
+eaccelerator.shm_ttl = "0"
 
-eaccelerator.shm_prune_period = "0"
-;When eAccelerator fails to get shared memory for a new script it tries
+; When eAccelerator fails to get shared memory for a new script it tries
 ; to remove old script if the previous try was made more then
 ; "shm_prune_period" seconds ago. Default value is "0" which means - don't
 ; try to remove any files from shared memory.
+eaccelerator.shm_prune_period = "0"
 
-eaccelerator.shm_only = "0"
-;Enables or disables caching of compiled scripts on disk. It has no effect
+; Enables or disables caching of compiled scripts on disk. It has no effect
 ; on session data and content caching. Default value is "0" which means -
 ; use disk and shared memory for caching.
+eaccelerator.shm_only = "0"
 
-eaccelerator.compress = "0"
-;Enables or disables cached content compression. Default value is "1"
+; Enables or disables cached content compression. Default value is "1"
 ; which means enable compression.
+eaccelerator.compress = "0"
 
-eaccelerator.compress_level = "9"
-;Compression level used for content caching. Default value is "9" which
+; Compression level used for content caching. Default value is "9" which
 ; is the maximum compression level
+eaccelerator.compress_level = "9"
 
+; Determine where keys, session data and content will be cached.
+; The possible values are:
+; "shm_and_disk", cache data in shared memory and on disk (default value)
+; "shm", cache data in shared memory or on disk if shared memory is full
+; or data size is greater then "eaccelerator.shm_max"
+; "shm_only", cache data in shared memory
+; "disk_only", cache data on disk
+; "none", don't cache data
 eaccelerator.keys     = "shm"
 eaccelerator.sessions = "shm"
 eaccelerator.content  = "shm"
-;Determine where keys, session data and content will be cached.
-; The possible values are:
-;"shm_and_disk", cache data in shared memory and on disk (default value)
-;"shm", cache data in shared memory or on disk if shared memory is full
-; or data size is greater then "eaccelerator.shm_max"
-;"shm_only", cache data in shared memory
-;"disk_only", cache data on disk
-;"none", don't cache data
 
 eaccelerator.admin.name="yourusername"
 eaccelerator.admin.password="yourpassword"
================================================================

---- CVS-web:
    http://cvs.pld-linux.org/SOURCES/eaccelerator.ini?r1=1.6&r2=1.7&f=u



More information about the pld-cvs-commit mailing list