exists( $key, $group, $common ) ) { return false; } return $this->set( $key, $value, $group, $common, $expire ); } /** * @param string $key * @param string $group * @param bool $common * * @return bool */ public abstract function delete( $key, $group = 'default', $common = false ); /** * @param string $group * @param bool $common * * @return bool */ public abstract function delete_group( $group, $common = false ); /** * @param string $group * @param bool $common * * @return array */ public abstract function get_cache_list( $group, $common = false ); /** * @return bool */ public function flush() { return true; } /** * @return bool */ public function close() { return true; } /** * switch blog */ public function switch_blog() { } }