|
122 | 122 | // |
123 | 123 | ], |
124 | 124 |
|
125 | | - /* |
126 | | - |-------------------------------------------------------------------------- |
127 | | - | Garbage Collection Threshold |
128 | | - |-------------------------------------------------------------------------- |
129 | | - | |
130 | | - | When executing long-lived PHP scripts such as Octane, memory can build |
131 | | - | up before being cleared by PHP. You can force Octane to run garbage |
132 | | - | collection if your application consumes this amount of megabytes. |
133 | | - | |
134 | | - */ |
135 | | - |
136 | | - 'garbage' => 50, |
137 | | - |
138 | | - /* |
139 | | - |-------------------------------------------------------------------------- |
140 | | - | Maximum Execution Time |
141 | | - |-------------------------------------------------------------------------- |
142 | | - | |
143 | | - | (info) 0 means no maximum limit |
144 | | - | |
145 | | - */ |
146 | | - |
147 | | - 'max_execution_time' => 30, |
148 | | - |
149 | 125 | /* |
150 | 126 | |-------------------------------------------------------------------------- |
151 | 127 | | Octane Cache Table |
|
182 | 158 |
|
183 | 159 | /* |
184 | 160 | |-------------------------------------------------------------------------- |
185 | | - | Lorem Ipsum |
| 161 | + | File Watching |
186 | 162 | |-------------------------------------------------------------------------- |
187 | 163 | | |
188 | | - | Lorem Ipsum has been the industry's standard dummy text ever since |
189 | | - | the 1500s, when an unknown printer took a galley of type and sc |
190 | | - | rambled it to make a type specimen book. It has survived not. |
| 164 | + | The following list of files and directories will be watched when using |
| 165 | + | the --watch option offered by Octane. If any of the directories and |
| 166 | + | files are changed, Octane will automatically reload your workers. |
191 | 167 | | |
192 | 168 | */ |
193 | 169 |
|
|
203 | 179 | '.env', |
204 | 180 | ], |
205 | 181 |
|
| 182 | + /* |
| 183 | + |-------------------------------------------------------------------------- |
| 184 | + | Garbage Collection Threshold |
| 185 | + |-------------------------------------------------------------------------- |
| 186 | + | |
| 187 | + | When executing long-lived PHP scripts such as Octane, memory can build |
| 188 | + | up before being cleared by PHP. You can force Octane to run garbage |
| 189 | + | collection if your application consumes this amount of megabytes. |
| 190 | + | |
| 191 | + */ |
| 192 | + |
| 193 | + 'garbage' => 50, |
| 194 | + |
| 195 | + /* |
| 196 | + |-------------------------------------------------------------------------- |
| 197 | + | Maximum Execution Time |
| 198 | + |-------------------------------------------------------------------------- |
| 199 | + | |
| 200 | + | The following setting configures the maximum execution time for requests |
| 201 | + | being handled by Octane. You may set this value to 0 to indicate that |
| 202 | + | there isn't a specific time limit on Octane request execution time. |
| 203 | + | |
| 204 | + */ |
| 205 | + |
| 206 | + 'max_execution_time' => 30, |
| 207 | + |
206 | 208 | ]; |
0 commit comments