Class Cache
- java.lang.Object
-
- com.squareup.okhttp.Cache
-
public final class Cache extends Object
Caches HTTP and HTTPS responses to the filesystem so they may be reused, saving time and bandwidth.Cache Optimization
To measure cache effectiveness, this class tracks three statistics:- Request Count: the number of HTTP requests issued since this cache was created.
- Network Count: the number of those requests that required network use.
- Hit Count: the number of those requests whose responses were served by the cache.
GET. The server will then send either the updated response if it has changed, or a short 'not modified' response if the client's copy is still valid. Such responses increment both the network count and hit count.The best way to improve the cache hit rate is by configuring the web server to return cacheable responses. Although this client honors all HTTP/1.1 (RFC 7234) cache headers, it doesn't cache partial responses.
Force a Network Response
In some situations, such as after a user clicks a 'refresh' button, it may be necessary to skip the cache, and fetch data directly from the server. To force a full refresh, add theno-cachedirective:
If it is only necessary to force a cached response to be validated by the server, use the more efficientRequest request = new Request.Builder() .cacheControl(new CacheControl.Builder().noCache().build()) .url("http://publicobject.com/helloworld.txt") .build();max-age=0directive instead:Request request = new Request.Builder() .cacheControl(new CacheControl.Builder() .maxAge(0, TimeUnit.SECONDS) .build()) .url("http://publicobject.com/helloworld.txt") .build();Force a Cache Response
Sometimes you'll want to show resources if they are available immediately, but not otherwise. This can be used so your application can show something while waiting for the latest data to be downloaded. To restrict a request to locally-cached resources, add theonly-if-cacheddirective:
This technique works even better in situations where a stale response is better than no response. To permit stale cached responses, use theRequest request = new Request.Builder() .cacheControl(new CacheControl.Builder() .onlyIfCached() .build()) .url("http://publicobject.com/helloworld.txt") .build(); Response forceCacheResponse = client.newCall(request).execute(); if (forceCacheResponse.code() != 504) { // The resource was cached! Show it. } else { // The resource was not cached. }max-staledirective with the maximum staleness in seconds:Request request = new Request.Builder() .cacheControl(new CacheControl.Builder() .maxStale(365, TimeUnit.DAYS) .build()) .url("http://publicobject.com/helloworld.txt") .build();The
CacheControlclass can configure request caching directives and parse response caching directives. It even offers convenient constantsCacheControl.FORCE_NETWORKandCacheControl.FORCE_CACHEthat address the use cases above.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voiddelete()Closes the cache and deletes all of its stored values.voidevictAll()Deletes all values stored in the cache.voidflush()FilegetDirectory()intgetHitCount()longgetMaxSize()intgetNetworkCount()intgetRequestCount()longgetSize()intgetWriteAbortCount()intgetWriteSuccessCount()voidinitialize()Initialize the cache.booleanisClosed()Iterator<String>urls()Returns an iterator over the URLs in this cache.
-
-
-
Constructor Detail
-
Cache
public Cache(File directory, long maxSize)
-
-
Method Detail
-
initialize
public void initialize() throws IOExceptionInitialize the cache. This will include reading the journal files from the storage and building up the necessary in-memory cache information.The initialization time may vary depending on the journal file size and the current actual cache size. The application needs to be aware of calling this function during the initialization phase and preferably in a background worker thread.
Note that if the application chooses to not call this method to initialize the cache. By default, the okhttp will perform lazy initialization upon the first usage of the cache.
- Throws:
IOException
-
delete
public void delete() throws IOExceptionCloses the cache and deletes all of its stored values. This will delete all files in the cache directory including files that weren't created by the cache.- Throws:
IOException
-
evictAll
public void evictAll() throws IOExceptionDeletes all values stored in the cache. In-flight writes to the cache will complete normally, but the corresponding responses will not be stored.- Throws:
IOException
-
urls
public Iterator<String> urls() throws IOException
Returns an iterator over the URLs in this cache. This iterator doesn't throwConcurrentModificationException, but if new responses are added while iterating, their URLs will not be returned. If existing responses are evicted during iteration, they will be absent (unless they were already returned).The iterator supports Iterator.remove(). Removing a URL from the iterator evicts the corresponding response from the cache. Use this to evict selected responses.
- Throws:
IOException
-
getWriteAbortCount
public int getWriteAbortCount()
-
getWriteSuccessCount
public int getWriteSuccessCount()
-
getSize
public long getSize() throws IOException- Throws:
IOException
-
getMaxSize
public long getMaxSize()
-
flush
public void flush() throws IOException- Throws:
IOException
-
close
public void close() throws IOException- Throws:
IOException
-
getDirectory
public File getDirectory()
-
isClosed
public boolean isClosed()
-
getNetworkCount
public int getNetworkCount()
-
getHitCount
public int getHitCount()
-
getRequestCount
public int getRequestCount()
-
-