Identifier string => exists */ public function has(CacheIdentifier ...$identifiers): array; /** * Remove cache items by identifiers (keys, tags, prefixes) * Supports batch operations and different identifier types */ public function forget(CacheIdentifier ...$identifiers): bool; /** * Clear all cache items */ public function clear(): bool; /** * Führt Callback aus, wenn Wert nicht im Cache ist ("Remember"-Pattern) * und cached das Ergebnis für die gewünschte Zeit */ public function remember(CacheKey $key, callable $callback, ?Duration $ttl = null): CacheItem; }