You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$stmt = $this->pdo->prepare('SELECT key, data, slide FROM cache WHERE key IN (?' . str_repeat(',?', count($keys) - 1) . ') AND (expire IS NULL OR expire >= ?)');
81
83
$stmt->execute(array_merge($keys, [time()]));
82
84
$result = [];
@@ -108,6 +110,7 @@ public function lock(string $key): void
0 commit comments