Package com.adobe.granite.httpcache.api
Interface CacheStore
-
@ProviderType public interface CacheStore
Creates, manages and deletes cache files.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CacheFilecreate(String key, Headers headers)Create a new cache file.booleanevict(String key)Evict some cache file.voidevictAll(String host, String path)Evict all cache files starting with a given path.CacheFilelookup(String key)Lookup an existing cache file.
-
-
-
Method Detail
-
create
CacheFile create(String key, Headers headers) throws IOException
Create a new cache file.- Parameters:
key- cache keyheaders- response headers- Returns:
- new cache file
- Throws:
IOException- if an I/O error occurs
-
lookup
CacheFile lookup(String key)
Lookup an existing cache file.- Parameters:
key- cache key- Returns:
- existing cache file or
null
-
evict
boolean evict(String key)
Evict some cache file.- Parameters:
key- cache key- Returns:
trueif some file was evicted;falseotherwise
-
-