diff options
author | Owen Winkler <a_github@midnightcircus.com> | 2014-05-30 12:38:37 -0400 |
---|---|---|
committer | Owen Winkler <a_github@midnightcircus.com> | 2014-05-30 12:38:37 -0400 |
commit | da6aae28ad0cb1bad3d0693f126a5436af64240d (patch) | |
tree | 912b952a2303bff189a2e8826460647fa04f3285 /config/config.sample.php | |
parent | b7f163a701e7c42fafac13477313636ba771e31a (diff) | |
parent | 19f0c47842527d565df3383a2c65830df3f3274f (diff) | |
download | nextcloud-server-da6aae28ad0cb1bad3d0693f126a5436af64240d.tar.gz nextcloud-server-da6aae28ad0cb1bad3d0693f126a5436af64240d.zip |
Merge pull request #8607 from owncloud/filescan_app_hook
Allow apps to control via a hook skipping add/remove a file during filescan
Diffstat (limited to 'config/config.sample.php')
-rwxr-xr-x | config/config.sample.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index 590aba714eb..0a81543589b 100755 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -297,6 +297,9 @@ $CONFIG = array( * 1 -> check each file or folder at most once per request, recomended for general use if outside changes might happen * 2 -> check every time the filesystem is used, causes a performance hit when using external storages, not recomended for regular use */ -'filesystem_check_changes' => 1 +'filesystem_check_changes' => 1, + +/* If true, prevent owncloud from changing the cache due to changes in the filesystem for all storage */ +'filesystem_cache_readonly' => false, ); |