forked from renoki-co/laravel-eloquent-query-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueryCacheModule.php
400 lines (343 loc) · 8.65 KB
/
QueryCacheModule.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
<?php
namespace Rennokki\QueryCache\Traits;
use DateTime;
trait QueryCacheModule
{
/**
* The number of seconds or the DateTime instance
* that specifies how long to cache the query.
*
* @var int|\DateTime
*/
protected $cacheTime;
/**
* The tags for the query cache. Can be useful
* if flushing cache for specific tags only.
*
* @var null|array
*/
protected $cacheTags = null;
/**
* The tags for the query cache that
* will be present on all queries.
*
* @var null|array
*/
protected $cacheBaseTags = null;
/**
* The cache driver to be used.
*
* @var string
*/
protected $cacheDriver;
/**
* A cache prefix string that will be prefixed
* on each cache key generation.
*
* @var string
*/
protected $cachePrefix = 'leqc';
/**
* Specify if the key that should be used when caching the query
* need to be plain or be hashed.
*
* @var bool
*/
protected $cacheUsePlainKey = false;
/**
* Set if the caching should be avoided.
*
* @var bool
*/
protected $avoidCache = true;
/**
* Get the cache from the current query.
*
* @param array $columns
* @param string|null $id
* @return array
*/
public function getFromQueryCache(string $method = 'get', $columns = ['*'], $id = null)
{
if (is_null($this->columns)) {
$this->columns = $columns;
}
$key = $this->getCacheKey('get');
$cache = $this->getCache();
$callback = $this->getQueryCacheCallback($method, $columns, $id);
$time = $this->getCacheTime();
if ($time instanceof DateTime || $time > 0) {
return $cache->remember($key, $time, $callback);
}
return $cache->rememberForever($key, $callback);
}
/**
* Get the query cache callback.
*
* @param string $method
* @param array $columns
* @param string|null $id
* @return \Closure
*/
public function getQueryCacheCallback(string $method = 'get', $columns = ['*'], $id = null)
{
return function () use ($method, $columns) {
$this->avoidCache = true;
return $this->{$method}($columns);
};
}
/**
* Get a unique cache key for the complete query.
*
* @param string $method
* @param string|null $id
* @param string|null $appends
* @return string
*/
public function getCacheKey(string $method = 'get', $id = null, $appends = null): string
{
$key = $this->generateCacheKey($method, $id, $appends);
$prefix = $this->getCachePrefix();
return "{$prefix}:{$key}";
}
/**
* Generate the unique cache key for the query.
*
* @param string $method
* @param string|null $id
* @param string|null $appends
* @return string
*/
public function generateCacheKey(string $method = 'get', $id = null, $appends = null): string
{
$key = $this->generatePlainCacheKey($method, $id, $appends);
if ($this->shouldUsePlainKey()) {
return $key;
}
return hash('sha256', $key);
}
/**
* Generate the plain unique cache key for the query.
*
* @param string $method
* @param string|null $id
* @param string|null $appends
* @return string
*/
public function generatePlainCacheKey(string $method = 'get', $id = null, $appends = null): string
{
$name = $this->connection->getName();
// Count has no Sql, that's why it can't be used ->toSql()
if ($method === 'count') {
return $name.$method.$id.serialize($this->getBindings()).$appends;
}
return $name.$method.$id.$this->toSql().serialize($this->getBindings()).$appends;
}
/**
* Flush the cache that contains specific tags.
*
* @param array $tags
* @return bool
*/
public function flushQueryCache(array $tags = []): bool
{
$cache = $this->getCacheDriver();
if (! method_exists($cache, 'tags')) {
return false;
}
if (! $tags) {
$tags = $this->getCacheBaseTags();
}
foreach ($tags as $tag) {
self::flushQueryCacheWithTag($tag);
}
return true;
}
/**
* Flush the cache for a specific tag.
*
* @param string $tag
* @return bool
*/
public function flushQueryCacheWithTag(string $tag): bool
{
$cache = $this->getCacheDriver();
if (! method_exists($cache, 'tags')) {
return false;
}
return $cache->tags($tag)->flush();
}
/**
* Indicate that the query results should be cached.
*
* @param \DateTime|int $time
* @return \Rennokki\QueryCache\Query\Builder
*/
public function cacheFor($time)
{
$this->cacheTime = $time;
$this->avoidCache = false;
return $this;
}
/**
* Indicate that the query results should be cached forever.
*
* @return \Illuminate\Database\Query\Builder|static
*/
public function cacheForever()
{
return $this->cacheFor(-1);
}
/**
* Indicate that the query should not be cached.
*
* @return \Illuminate\Database\Query\Builder|static
*/
public function dontCache()
{
$this->avoidCache = true;
return $this;
}
/**
* Alias for dontCache().
*
* @return \Illuminate\Database\Query\Builder|static
*/
public function doNotCache()
{
return $this->dontCache();
}
/**
* Set the cache prefix.
*
* @param string $prefix
* @return \Rennokki\QueryCache\Query\Builder
*/
public function cachePrefix(string $prefix)
{
$this->cachePrefix = $prefix;
return $this;
}
/**
* Attach tags to the cache.
*
* @param array $cacheTags
* @return \Rennokki\QueryCache\Query\Builder
*/
public function cacheTags(array $cacheTags = [])
{
$this->cacheTags = $cacheTags;
return $this;
}
/**
* Use a specific cache driver.
*
* @param string $cacheDriver
* @return \Rennokki\QueryCache\Query\Builder
*/
public function cacheDriver(string $cacheDriver)
{
$this->cacheDriver = $cacheDriver;
return $this;
}
/**
* Set the base cache tags; the tags
* that will be present on all cached queries.
*
* @param array $tags
* @return \Rennokki\QueryCache\Query\Builder
*/
public function cacheBaseTags(array $tags = [])
{
$this->cacheBaseTags = $tags;
return $this;
}
/**
* Use a plain key instead of a hashed one in the cache driver.
*
* @return \Rennokki\QueryCache\Query\Builder
*/
public function withPlainKey()
{
$this->cacheUsePlainKey = true;
return $this;
}
/**
* Get the cache driver.
*
* @return \Illuminate\Cache\CacheManager
*/
public function getCacheDriver()
{
return app('cache')->driver($this->cacheDriver);
}
/**
* Get the cache object with tags assigned, if applicable.
*
* @return \Illuminate\Cache\CacheManager
*/
public function getCache()
{
$cache = $this->getCacheDriver();
$tags = array_merge(
$this->getCacheTags() ?: [],
$this->getCacheBaseTags() ?: []
);
return $tags ? $cache->tags($tags) : $cache;
}
/**
* Check if the cache operation should be avoided.
*
* @return bool
*/
public function shouldAvoidCache(): bool
{
return $this->avoidCache;
}
/**
* Check if the cache operation key should use a plain
* query key.
*
* @return bool
*/
public function shouldUsePlainKey(): bool
{
return $this->cacheUsePlainKey;
}
/**
* Get the cache time attribute.
*
* @return int|\DateTime
*/
public function getCacheTime()
{
return $this->cacheTime;
}
/**
* Get the cache tags attribute.
*
* @return array|null
*/
public function getCacheTags()
{
return $this->cacheTags;
}
/**
* Get the base cache tags attribute.
*
* @return array|null
*/
public function getCacheBaseTags()
{
return $this->cacheBaseTags;
}
/**
* Get the cache prefix attribute.
*
* @return string
*/
public function getCachePrefix(): string
{
return $this->cachePrefix;
}
}