From 727d36e66beab43d7f4d831c75ca3b4872ec0974 Mon Sep 17 00:00:00 2001 From: Steve Persch Date: Sat, 24 Sep 2016 11:02:05 -0500 Subject: [PATCH] Set overhead variable --- src/BackendFactory.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }