root/eaccelerator/trunk/eaccelerator.ini

Revision 380, 3.4 kB (checked in by bart, 6 months ago)

Remove unused ini entries

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 [eaccelerator]
2
3 ;;;;;;;;;;;;;;;;;;;
4 ; About this file ;
5 ;;;;;;;;;;;;;;;;;;;
6 ;
7 ; eAccelerator is compatible with Zend Optimizer's loader. Zend Optimizer
8 ; must be installed after eAccelerator in php.ini. If you don't use scripts
9 ; encoded with Zend Encoder then we do not recommend you install Zend Optimizer
10 ; with eAccelerator.
11
12
13 ; You must uncomment one (and only one) line from the following to load
14 ; eAccelerator extension.
15 extension="eaccelerator.so"
16 ;zend_extension="/usr/lib/php/modules/eaccelerator.so"
17 ;zend_extension_ts="/usr/lib/php/modules/eaccelerator.so"
18
19 ;extension="eaccelerator.dll"
20 ;zend_extension_ts="c:\php4\eaccelerator.dll"
21 ;zend_extension="c:\php4\eaccelerator.dll"
22
23 ; The amount of shared memory (in megabytes) that eAccelerator will use.
24 ; "0" means OS default. Default value is "0".
25 eaccelerator.shm_size = "0"
26
27 ; The directory that is used for disk cache. eAccelerator stores precompiled
28 ; code, session data, content and user entries  here. The same data can be
29 ; stored in shared memory also (for more quick access). Default value is
30 ; "/tmp/eaccelerator".
31 eaccelerator.cache_dir = "/tmp/eaccelerator"
32
33 ; Enables or disables eAccelerator. Should be "1" for enabling or
34 ; "0" for disabling. Default value is "1".
35 eaccelerator.enable = "1"
36
37 ; Enables or disables internal peephole optimizer which may speed up code
38 ; execution. Should be "1" for enabling or "0" for disabling.
39 ; Default value is "1".
40 eaccelerator.optimizer = "1"
41
42 ; Enables or disables debug logging. Setting this to 1 will print information
43 ; to the log file about the cach hits of a file.
44 eaccelerator.debug = 0
45
46 ; Set the log file for eaccelerator. When this option isn't set then the data
47 ; will be logged to stderr
48 eaccelerator.log_file = "/var/log/httpd/eaccelerator_log"
49
50 ; A string that's prepended to all keys. This allows two applications that use the
51 ; same key names to run on the same host by setting this in .htaccess or in the main
52 ; configuration file for the whole webserver.
53 eaccelerator.name_space = ""
54
55 ; Enables or disables PHP file modification checking. Should be "1"
56 ; for enabling or "0" for disabling. You should set it to "1" if you want
57 ; to recompile PHP files after modification. Default value is "1".
58 eaccelerator.check_mtime = "1"
59
60 ; Determine which PHP files must be cached. You may specify the number of
61 ; patterns (for example "*.php *.phtml") which specifies to cache or
62 ; not to cache. If pattern starts with the character "!", it means to ignore
63 ; files which are matched by the following pattern. Default value is "" that
64 ; means - all PHP scripts will be cached.
65 eaccelerator.filter = ""
66
67 ; When eAccelerator fails to get shared memory for new script it removes
68 ; all scripts which were not accessed at last "shm_ttl" seconds from shared
69 ; memory. Default value is "0" that means - don't remove any files from
70 ; shared memory.
71 eaccelerator.shm_ttl = "0"
72
73 ; When eAccelerator fails to get shared memory for new script it tries to
74 ; remove old script if the previous try was made more then "shm_prune_period"
75 ; seconds ago. Default value is "0" that means - don't try to remove any
76 ; files from shared memory.
77 eaccelerator.shm_prune_period = "0"
78
79 ; Enables or disables caching of compiled scripts on disk. It has no effect
80 ; on session data and content caching.
81 ; Default value is "0" that means - use disk and shared memory for caching.
82 eaccelerator.shm_only = "0"
83
84 ; The script paths that are allowed to get admin information and do admin
85 ; controls
86 eaccelerator.allowed_admin_path = ""
87
Note: See TracBrowser for help on using the browser.