firefly-iii/config/laravel-model-caching.php

11 lines
272 B
PHP
Raw Permalink Normal View History

2024-07-26 05:52:54 -05:00
<?php
declare(strict_types=1);
2024-07-26 05:52:54 -05:00
return [
'cache-prefix' => '',
2024-07-29 23:14:43 -05:00
'enabled' => env('MODEL_CACHE_ENABLED', false),
2024-07-26 05:52:54 -05:00
'use-database-keying' => env('MODEL_CACHE_USE_DATABASE_KEYING', true),
'store' => env('MODEL_CACHE_STORE'),
2024-07-26 05:52:54 -05:00
];