diff --git a/src/Query/Builder.php b/src/Query/Builder.php index 4b1f23c..24c4408 100644 --- a/src/Query/Builder.php +++ b/src/Query/Builder.php @@ -51,7 +51,7 @@ class Builder extends BaseBuilder * * @var bool */ - protected $avoidCache = false; + protected $avoidCache = true; /** * {@inheritdoc} @@ -227,6 +227,7 @@ protected function getCache() public function cacheFor($time) { $this->cacheTime = $time; + $this->avoidCache = false; return $this; }