hypothetical/config/cache.php

108 lines
3.3 KiB
PHP
Raw Normal View History

<?php
use Illuminate\Support\Str;
return [
/*
|--------------------------------------------------------------------------
| Default Cache Store
|--------------------------------------------------------------------------
|
2024-03-19 17:11:58 -04:00
| This option controls the default cache store that will be used by the
| framework. This connection is utilized if another isn't explicitly
| specified when running a cache operation inside the application.
|
*/
2024-03-19 17:11:58 -04:00
'default' => env('CACHE_STORE', 'database'),
/*
|--------------------------------------------------------------------------
| Cache Stores
|--------------------------------------------------------------------------
|
| Here you may define all of the cache "stores" for your application as
| well as their drivers. You may even define multiple stores for the
| same cache driver to group types of items stored in your caches.
|
2024-03-19 17:11:58 -04:00
| Supported drivers: "apc", "array", "database", "file", "memcached",
| "redis", "dynamodb", "octane", "null"
|
*/
'stores' => [
'array' => [
'driver' => 'array',
'serialize' => false,
],
'database' => [
'driver' => 'database',
2024-03-19 17:11:58 -04:00
'table' => env('DB_CACHE_TABLE', 'cache'),
2024-04-03 16:17:36 -04:00
'connection' => env('DB_CACHE_CONNECTION'),
'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'),
],
'file' => [
'driver' => 'file',
2017-01-26 19:17:37 -05:00
'path' => storage_path('framework/cache/data'),
2023-07-13 17:09:38 -04:00
'lock_path' => storage_path('framework/cache/data'),
],
'memcached' => [
2016-08-19 16:38:49 -04:00
'driver' => 'memcached',
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
'sasl' => [
2016-08-19 16:38:49 -04:00
env('MEMCACHED_USERNAME'),
env('MEMCACHED_PASSWORD'),
],
'options' => [
2019-03-19 17:40:13 -04:00
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
2016-08-19 16:38:49 -04:00
],
'servers' => [
[
2016-08-19 16:38:49 -04:00
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
'port' => env('MEMCACHED_PORT', 11211),
'weight' => 100,
],
],
],
'redis' => [
'driver' => 'redis',
2024-03-19 17:11:58 -04:00
'connection' => env('REDIS_CACHE_CONNECTION', 'cache'),
'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'),
],
2019-03-19 17:40:13 -04:00
'dynamodb' => [
'driver' => 'dynamodb',
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
'table' => env('DYNAMODB_CACHE_TABLE', 'cache'),
2019-09-06 01:32:11 -04:00
'endpoint' => env('DYNAMODB_ENDPOINT'),
2019-03-19 17:40:13 -04:00
],
2021-08-03 17:15:07 -04:00
'octane' => [
'driver' => 'octane',
],
],
/*
|--------------------------------------------------------------------------
| Cache Key Prefix
|--------------------------------------------------------------------------
|
2024-03-19 17:11:58 -04:00
| When utilizing the APC, database, memcached, Redis, and DynamoDB cache
| stores, there might be other applications using the same cache. For
2022-05-23 21:01:33 -04:00
| that reason, you may prefix every cache key to avoid collisions.
|
*/
2022-05-23 21:01:33 -04:00
'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'),
];