2024-05-10 23:10:00 +00:00
|
|
|
<?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
|
2024-05-10 23:10:00 +00:00
|
|
|
protected static $flushCacheOnUpdate = TRUE;
|
|
|
|
public $cacheDriver = 'memcached';
|
|
|
|
}
|