clrghouz/app/Traits/QueryCacheableConfig.php

17 lines
304 B
PHP
Raw Normal View History

<?php
/**
* Set defaults of QueryCacheable
*/
namespace App\Traits;
use Rennokki\QueryCache\Traits\QueryCacheable;
trait QueryCacheableConfig
{
use QueryCacheable;
2024-11-27 07:41:27 +00:00
public $cacheFor = 30; // cache time, in seconds
protected static $flushCacheOnUpdate = TRUE;
public $cacheDriver = 'memcached';
}