Manual:$wgCriticalSectionTimeLimit/ru

From mediawiki.org
This page is a translated version of the page Manual:$wgCriticalSectionTimeLimit and the translation is 11% complete.
Performance hacks and limits: $wgCriticalSectionTimeLimit
The maximum time critical sections are allowed to stay open.
Введено в версии:1.36.0 (Gerrit change 654573; git #2697837f)
Удалено в версии:всё ещё используется
Допустимые значения:(float)
Значение по умолчанию:180.0

Подробнее

The maximum time critical sections are allowed to stay open. Critical sections are used to defer Excimer request timeouts. If Excimer is available and this time limit is exceeded, an exception will be thrown at the next opportunity, typically after a long-running function like a DB query returns.

Critical sections may wrap long-running queries, and it's generally better for the timeout to be handled a few milliseconds later when the critical section exits, so this should be a large number.

This limit is ignored in command-line mode.