Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs for Slim 3.x PR #2586 #334

Merged
merged 1 commit into from
Apr 15, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 6 additions & 5 deletions docs/v3/objects/application.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,10 @@ Slim has the following default settings that you can override:
If you are using a runtime analytics tool, such as New Relic, then this should be disabled.
<br>(Default: <code>true</code>)</dd>
<dt><code>routerCacheFile</code></dt>
<dd>Filename for caching the FastRoute routes. Must be set to to a valid filename within
a writeable directory. If the file does not exist, then it is created with the correct cache
information on first run.<br>
Set to <code>false</code> to disable the FastRoute cache system.
<br>(Default: <code>false</code>)</dd>
<dd>Filename for caching the FastRoute routes. To create the file, this needs to be set to a filename
that does not exist in a writable directory upon first run. Once the file has been populated with the cache data,
only read permissions are required for this file. You may need to generate this file in your development environment
and commit it to your project if the application does not have write permissions on your deployment server.
<br/>Set to <code>false</code> to disable the FastRoute cache system.
<br/>(Default: <code>false</code>)</dd>
</dl>