From 675c6f6e08aaa8dcc013fc9407cb5d0e2896bc4a Mon Sep 17 00:00:00 2001 From: Yury Pikhtarev Date: Tue, 24 Jun 2025 02:30:47 +0400 Subject: [PATCH] chore: update .env.example for maintenance driver configuration - Changed APP_MAINTENANCE_DRIVER from file to cache for improved performance. - Ensured CACHE_STORE remains set to database for consistency. These changes refine the environment configuration for better maintenance handling. --- .env.example | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index b8143931e..43825b834 100644 --- a/.env.example +++ b/.env.example @@ -8,7 +8,7 @@ APP_LOCALE=en APP_FALLBACK_LOCALE=en APP_FAKER_LOCALE=en_US -APP_MAINTENANCE_DRIVER=file +APP_MAINTENANCE_DRIVER=cache APP_MAINTENANCE_STORE=database PHP_CLI_SERVER_WORKERS=4 @@ -37,8 +37,8 @@ BROADCAST_CONNECTION=log FILESYSTEM_DISK=local QUEUE_CONNECTION=database -CACHE_STORE=database CACHE_PREFIX=torrentpier_ +CACHE_STORE=database MEMCACHED_HOST=127.0.0.1