How to configure sessions by Redis in Magento2 using the Unix Socket
The session can be configured in two ways. Configure caching by editing the file env.php Using the CLI tool Session socket is runnning in the following sock /var/run/redis-multi.redis/redis.sock Config the editig by env.php ‘session’ => [ ‘save’ => ‘redis’, ‘redis’ => [ ‘host’ => ‘/var/run/redis-multi.redis/redis.sock’, ‘port’ => ‘0’, ‘password’ => ”, ‘timeout’ => ‘2.5’, ‘persistent_identifier’ => ”, ‘database’ => ‘0’, ‘compression_threshold’ => ‘2048’, ‘compression_library’ => ‘gzip’, ‘log_level’ => ‘3’, ‘max_concurrency’…