From 759979fc10d31e28769349e643c476c15e934282 Mon Sep 17 00:00:00 2001 From: Nabeel Shahzad Date: Wed, 6 Nov 2019 11:31:33 -0500 Subject: [PATCH] Random cache prefix closes #374 --- modules/Installer/Services/ConfigService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/Installer/Services/ConfigService.php b/modules/Installer/Services/ConfigService.php index 9cb4af9b..660be416 100644 --- a/modules/Installer/Services/ConfigService.php +++ b/modules/Installer/Services/ConfigService.php @@ -145,7 +145,7 @@ class ConfigService extends Service protected function configCacheDriver($opts) { // Set the cache prefix - $opts['CACHE_PREFIX'] = $opts['SITE_NAME'].'_'; + $opts['CACHE_PREFIX'] = uniqid($opts['SITE_NAME'].'_'); // Figure out what cache driver to initially use, depending on // what is installed. It won't detect redis or anything, though