summaryrefslogtreecommitdiff
path: root/main
diff options
context:
space:
mode:
authorMarkus Staab <maggus.staab@googlemail.com>2017-01-03 09:25:11 +0100
committerJoe Watkins <krakjoe@php.net>2017-01-06 05:25:04 +0000
commit66b698c3cfde08785f1cc3f8574a0f49c45640fb (patch)
tree91dd83ffff063c1b611432b41b3b6ee6c32ce764 /main
parenta7c444b939338bb5eadc2d64a2dbc16d9199fbe3 (diff)
downloadphp-git-66b698c3cfde08785f1cc3f8574a0f49c45640fb.tar.gz
Increase realpath_cache_size default value
Diffstat (limited to 'main')
-rw-r--r--main/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.c b/main/main.c
index c73f05b2da..b55f879104 100644
--- a/main/main.c
+++ b/main/main.c
@@ -567,7 +567,7 @@ PHP_INI_BEGIN()
STD_PHP_INI_BOOLEAN("allow_url_include", "0", PHP_INI_SYSTEM, OnUpdateBool, allow_url_include, php_core_globals, core_globals)
STD_PHP_INI_BOOLEAN("enable_post_data_reading", "1", PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateBool, enable_post_data_reading, php_core_globals, core_globals)
- STD_PHP_INI_ENTRY("realpath_cache_size", "16K", PHP_INI_SYSTEM, OnUpdateLong, realpath_cache_size_limit, virtual_cwd_globals, cwd_globals)
+ STD_PHP_INI_ENTRY("realpath_cache_size", "128K", PHP_INI_SYSTEM, OnUpdateLong, realpath_cache_size_limit, virtual_cwd_globals, cwd_globals)
STD_PHP_INI_ENTRY("realpath_cache_ttl", "120", PHP_INI_SYSTEM, OnUpdateLong, realpath_cache_ttl, virtual_cwd_globals, cwd_globals)
STD_PHP_INI_ENTRY("user_ini.filename", ".user.ini", PHP_INI_SYSTEM, OnUpdateString, user_ini_filename, php_core_globals, core_globals)