|
| 1 | +<?php |
| 2 | + |
| 3 | +use Illuminate\Support\Str; |
| 4 | + |
| 5 | +return [ |
| 6 | + |
| 7 | + /* |
| 8 | + |-------------------------------------------------------------------------- |
| 9 | + | Default Cache Store |
| 10 | + |-------------------------------------------------------------------------- |
| 11 | + | |
| 12 | + | This option controls the default cache store that will be used by the |
| 13 | + | framework. This connection is utilized if another isn't explicitly |
| 14 | + | specified when running a cache operation inside the application. |
| 15 | + | |
| 16 | + */ |
| 17 | + |
| 18 | + 'default' => env('CACHE_STORE', 'database'), |
| 19 | + |
| 20 | + /* |
| 21 | + |-------------------------------------------------------------------------- |
| 22 | + | Cache Stores |
| 23 | + |-------------------------------------------------------------------------- |
| 24 | + | |
| 25 | + | Here you may define all of the cache "stores" for your application as |
| 26 | + | well as their drivers. You may even define multiple stores for the |
| 27 | + | same cache driver to group types of items stored in your caches. |
| 28 | + | |
| 29 | + | Supported drivers: "array", "database", "file", "memcached", |
| 30 | + | "redis", "dynamodb", "octane", "null" |
| 31 | + | |
| 32 | + */ |
| 33 | + |
| 34 | + 'stores' => [ |
| 35 | + |
| 36 | + 'array' => [ |
| 37 | + 'driver' => 'array', |
| 38 | + 'serialize' => false, |
| 39 | + ], |
| 40 | + |
| 41 | + 'database' => [ |
| 42 | + 'driver' => 'database', |
| 43 | + 'connection' => env('DB_CACHE_CONNECTION'), |
| 44 | + 'table' => env('DB_CACHE_TABLE', 'cache'), |
| 45 | + 'lock_connection' => env('DB_CACHE_LOCK_CONNECTION'), |
| 46 | + 'lock_table' => env('DB_CACHE_LOCK_TABLE'), |
| 47 | + ], |
| 48 | + |
| 49 | + 'file' => [ |
| 50 | + 'driver' => 'file', |
| 51 | + 'path' => storage_path('framework/cache/data'), |
| 52 | + 'lock_path' => storage_path('framework/cache/data'), |
| 53 | + ], |
| 54 | + |
| 55 | + 'memcached' => [ |
| 56 | + 'driver' => 'memcached', |
| 57 | + 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'), |
| 58 | + 'sasl' => [ |
| 59 | + env('MEMCACHED_USERNAME'), |
| 60 | + env('MEMCACHED_PASSWORD'), |
| 61 | + ], |
| 62 | + 'options' => [ |
| 63 | + // Memcached::OPT_CONNECT_TIMEOUT => 2000, |
| 64 | + ], |
| 65 | + 'servers' => [ |
| 66 | + [ |
| 67 | + 'host' => env('MEMCACHED_HOST', '127.0.0.1'), |
| 68 | + 'port' => env('MEMCACHED_PORT', 11211), |
| 69 | + 'weight' => 100, |
| 70 | + ], |
| 71 | + ], |
| 72 | + ], |
| 73 | + |
| 74 | + 'redis' => [ |
| 75 | + 'driver' => 'redis', |
| 76 | + 'connection' => env('REDIS_CACHE_CONNECTION', 'cache'), |
| 77 | + 'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'), |
| 78 | + ], |
| 79 | + |
| 80 | + 'global_redis' => [ |
| 81 | + 'driver' => 'redis', |
| 82 | + 'connection' => 'global_cache', |
| 83 | + 'lock_connection' => env('REDIS_CACHE_LOCK_CONNECTION', 'default'), |
| 84 | + ], |
| 85 | + |
| 86 | + 'dynamodb' => [ |
| 87 | + 'driver' => 'dynamodb', |
| 88 | + 'key' => env('AWS_ACCESS_KEY_ID'), |
| 89 | + 'secret' => env('AWS_SECRET_ACCESS_KEY'), |
| 90 | + 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'), |
| 91 | + 'table' => env('DYNAMODB_CACHE_TABLE', 'cache'), |
| 92 | + 'endpoint' => env('DYNAMODB_ENDPOINT'), |
| 93 | + ], |
| 94 | + |
| 95 | + 'octane' => [ |
| 96 | + 'driver' => 'octane', |
| 97 | + ], |
| 98 | + |
| 99 | + ], |
| 100 | + |
| 101 | + /* |
| 102 | + |-------------------------------------------------------------------------- |
| 103 | + | Cache Key Prefix |
| 104 | + |-------------------------------------------------------------------------- |
| 105 | + | |
| 106 | + | When utilizing the APC, database, memcached, Redis, and DynamoDB cache |
| 107 | + | stores, there might be other applications using the same cache. For |
| 108 | + | that reason, you may prefix every cache key to avoid collisions. |
| 109 | + | |
| 110 | + */ |
| 111 | + |
| 112 | + 'prefix' => env('CACHE_PREFIX', Str::slug(env('APP_NAME', 'laravel'), '_').'_cache_'), |
| 113 | + |
| 114 | +]; |
0 commit comments