redis_-_konfiguracja
To jest stara wersja strony!
Cache
'components' => [ // ... 'cache' => [ 'class' => 'yii\redis\Cache', 'redis' => [ 'hostname' => 'localhost', // Adres hosta Redis 'port' => 6379, // Numer portu Redis 'database' => 0, // Numer bazy danych Redis ], ], // ... ],
Sesja w Redis
'components' => [ 'session' => [ 'class' => 'yii\redis\Session', 'timeout' => 86400, // czas ważności w sekundach (np. 1 dzień) 'redis' => [ 'hostname' => 'localhost', 'port' => 6379, 'database' => 0, ], ], ],
redis_-_konfiguracja.1702285331.txt.gz · ostatnio zmienione: 2024/09/15 16:22 (edycja zewnętrzna)