Manual:$wgLockManagers
Appearance
| ファイルとファイル アップロード: $wgLockManagers | |
|---|---|
| Array of configuration arrays for each lock manager. |
|
| 導入されたバージョン: | 1.19.0 |
| 除去されたバージョン: | 使用中 |
| 許容される値: | (配列) |
| 既定値: | 下記参照 |
| その他の設定: アルファベット順 | 機能順 | |
詳細
This array contains the configuration for each resource lock manager.
Each backend configuration has the following parameters:
- name
- A unique name for the lock manager
- class
- The lock manager class to use
- Additional parameters are specific to the class used.
既定値
Initialized in Setup.php:
[
[
'name' => 'fsLockManager',
'class' => FSLockManager::class,
'lockDirectory' => "{$wgUploadDirectory}/lockdir",
],
[
'name' => 'nullLockManager',
'class' => NullLockManager::class,
],
]