public function shutdown() { if (sizeof($this->purged)) { vB::$db->query_write(" DELETE FROM " . TABLE_PREFIX . "cache WHERE cacheid IN ('" . implode('\',\'', $this->purged) . "') "); } $this->purged = array(); if (sizeof($this->expired)) { vB::$db->query_write(" UPDATE " . TABLE_PREFIX . "cache SET expires = " . (TIMENOW - 1) . " WHERE cacheid IN ('" . implode('\',\'', $this->expired) . "')" ); } $this->expired = array(); parent::shutdown(); }
public function shutdown() { parent::shutdown(); }