diff options
author | Alexandre Alapetite <alexandre@alapetite.fr> | 2024-02-26 09:01:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-26 09:01:49 +0100 |
commit | bdf899164b6ba127edd42352e85dc37ab445966a (patch) | |
tree | 5e95775599d80b69784715f3af57fdbf62336b17 /config.default.php | |
parent | bfd277065c7bfd28779c585549dd9e9e577eabdf (diff) | |
download | freshrss-bdf899164b6ba127edd42352e85dc37ab445966a.tar.gz freshrss-bdf899164b6ba127edd42352e85dc37ab445966a.zip |
System option for number of feeds to refresh in parallel (#6124)
* System option for number of feeds to refresh in parallel
fix https://github.com/FreshRSS/FreshRSS/issues/6123
* Forgot refreshDynamicOpml
Diffstat (limited to 'config.default.php')
-rw-r--r-- | config.default.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config.default.php b/config.default.php index 872975546..80c2f257c 100644 --- a/config.default.php +++ b/config.default.php @@ -92,6 +92,10 @@ return array( # If true does nothing, if false restricts HTTP Referer via: meta referrer origin 'allow_referrer' => false, + # Number of feeds to refresh in parallel from the Web user interface. + # Faster with higher values. Reduce for server with little memory or database issues. + 'nb_parallel_refresh' => 10, + 'limits' => array( # Duration in seconds of the login cookie. |