|
@@ -27,7 +27,7 @@ return [
|
|
|
| same cache driver to group types of items stored in your caches.
|
|
|
|
|
|
|
| Supported drivers: "apc", "array", "database", "file",
|
|
|
- | "memcached", "redis", "dynamodb", "null"
|
|
|
+ | "memcached", "redis", "dynamodb", "octane", "null"
|
|
|
|
|
|
|
*/
|
|
|
|
|
@@ -88,6 +88,10 @@ return [
|
|
|
'endpoint' => env('DYNAMODB_ENDPOINT'),
|
|
|
],
|
|
|
|
|
|
+ 'octane' => [
|
|
|
+ 'driver' => 'octane',
|
|
|
+ ],
|
|
|
+
|
|
|
],
|
|
|
|
|
|
/*
|
|
@@ -95,12 +99,12 @@ return [
|
|
|
| Cache Key Prefix
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
- | When utilizing a RAM based store such as APC or Memcached, there might
|
|
|
- | be other applications utilizing the same cache. So, we'll specify a
|
|
|
- | value to get prefixed to all our keys so we can avoid collisions.
|
|
|
+ | When utilizing the APC, database, memcached, Redis, or DynamoDB cache
|
|
|
+ | stores there might be other applications using the same cache. For
|
|
|
+ | that reason, you may prefix every cache key to avoid collisions.
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
- 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'),
|
|
|
+ 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
|
|
|
|
|
|
];
|