Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cache.php 3.3KB

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