The extension adds a redis lock strategy with priority 100. So the redis lock will be used instead of file base locking, especially useful in cluster with nfs.
- Redis Lock
The recommended way to install the extension is by using Composer. In your Composer based TYPO3 project root, just do
composer require tourstream/typo3-redis-lock-strategy
This extension uses the pecl extension redis.
$GLOBALS['TYPO3_CONF_VARS']['SYS']['redis_lock'] = [
'host' => 'localhost',
'port' => 6379, // optional, default 6379
'database' => 0, // optional, default 0
'ttl' => '60', // optional, default 60
'auth' => 'secret' // optional, for secured redis db's
];