forked from renoki-co/laravel-eloquent-query-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuilder.php
38 lines (30 loc) · 813 Bytes
/
Builder.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
<?php
namespace Rennokki\QueryCache\Query;
use Jenssegers\Mongodb\Query\Builder as BaseBuilder;
use Rennokki\QueryCache\Contracts\QueryCacheModuleInterface;
use Rennokki\QueryCache\Traits\QueryCacheModule;
class Builder extends BaseBuilder implements QueryCacheModuleInterface
{
use QueryCacheModule;
/**
* {@inheritdoc}
*/
public function get($columns = ['*'])
{
if (! $this->shouldAvoidCache()) {
return $this->getFromQueryCache('get', $columns);
}
return parent::get($columns);
}
/**
* {@inheritdoc}
*/
public function useWritePdo()
{
// Do not cache when using the write pdo for query.
$this->dontCache();
// Call parent method
parent::useWritePdo();
return $this;
}
}