diff --git a/src/BackendFactory.php b/src/BackendFactory.php index bc21d44..d95ffbd 100644 --- a/src/BackendFactory.php +++ b/src/BackendFactory.php @@ -41,7 +41,7 @@ public function __construct(Connection $connection) { $l1 = new \LCache\APCuL1(); } $l2 = new \LCache\DatabaseL2($this->getPdoHandle()); - $this->integrated = new \LCache\Integrated($l1, $l2); + $this->integrated = new \LCache\Integrated($l1, $l2, 100); $this->integrated->synchronize(); }