1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/config/cache.php

97 lines
2.6 KiB
PHP
Raw Normal View History

2018-10-04 19:10:43 +02:00
<?php
2019-09-26 12:49:52 +02:00
use Illuminate\Support\Str;
2018-10-04 19:10:43 +02:00
return [
/*
|--------------------------------------------------------------------------
| Default Cache Store
|--------------------------------------------------------------------------
|
| This option controls the default cache connection that gets used while
| using this caching library. This connection is used when another is
| not explicitly specified when executing a given caching function.
|
| Supported: "apc", "array", "database", "file", "memcached", "redis"
|
*/
'default' => env('CACHE_DRIVER', 'file'),
2018-10-04 19:10:43 +02:00
/*
|--------------------------------------------------------------------------
| 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.
|
*/
'stores' => [
'apc' => [
'driver' => 'apc',
],
'array' => [
'driver' => 'array',
],
'database' => [
'driver' => 'database',
'table' => 'cache',
2018-10-04 19:10:43 +02:00
'connection' => null,
],
'file' => [
'driver' => 'file',
'path' => storage_path('framework/cache/data'),
2018-10-04 19:10:43 +02:00
],
'memcached' => [
'driver' => 'memcached',
2018-10-04 19:10:43 +02:00
'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
'sasl' => [
2018-10-04 19:10:43 +02:00
env('MEMCACHED_USERNAME'),
env('MEMCACHED_PASSWORD'),
],
'options' => [
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
],
'servers' => [
[
'host' => env('MEMCACHED_HOST', '127.0.0.1'),
'port' => env('MEMCACHED_PORT', 11211),
2018-10-04 19:10:43 +02:00
'weight' => 100,
],
],
],
'redis' => [
'driver' => 'redis',
2018-10-04 19:10:43 +02:00
'connection' => 'cache',
],
],
/*
|--------------------------------------------------------------------------
| 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.
|
*/
'prefix' => env(
'CACHE_PREFIX',
2019-09-26 12:49:52 +02:00
Str::slug(env('APP_NAME', 'laravel'), '_').'_cache'
),
2018-10-04 19:10:43 +02:00
];