forked from renoki-co/laravel-eloquent-query-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueryCacheable.php
97 lines (83 loc) · 2.08 KB
/
QueryCacheable.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?php
namespace Rennokki\QueryCache\Traits;
use Rennokki\QueryCache\FlushQueryCacheObserver;
use Rennokki\QueryCache\Query\Builder;
trait QueryCacheable
{
/**
* Get the observer class name that will
* observe the changes and will invalidate the cache
* upon database change.
*
* @return string
*/
protected static function getFlushQueryCacheObserver()
{
return FlushQueryCacheObserver::class;
}
/**
* When invalidating automatically on update, you can specify
* which tags to invalidate.
*
* @return array
*/
public function getCacheTagsToInvalidateOnUpdate(): array
{
return $this->getCacheBaseTags();
}
/**
* Boot the trait.
*
* @return void
*/
public static function bootQueryCacheable()
{
if (isset(static::$flushCacheOnUpdate) && static::$flushCacheOnUpdate) {
static::observe(
static::getFlushQueryCacheObserver()
);
}
}
/**
* {@inheritdoc}
*/
protected function newBaseQueryBuilder()
{
$connection = $this->getConnection();
$builder = new Builder(
$connection,
$connection->getPostProcessor()
);
if ($this->cacheFor) {
$builder->cacheFor($this->cacheFor);
} else {
$builder->dontCache();
}
if ($this->cacheTags) {
$builder->cacheTags($this->cacheTags);
}
if ($this->cachePrefix) {
$builder->cachePrefix($this->cachePrefix);
}
if ($this->cacheDriver) {
$builder->cacheDriver($this->cacheDriver);
}
if ($this->cacheUsePlainKey) {
$builder->withPlainKey();
}
return $builder
->cacheBaseTags($this->getCacheBaseTags());
}
/**
* Set the base cache tags that will be present
* on all queries.
*
* @return array
*/
protected function getCacheBaseTags(): array
{
return [
(string) self::class,
];
}
}