Lines Matching refs:cache
59 {@code ImageLoader} provides an in-memory cache to sit in front of the normal Volley
60 cache, which is important to prevent flickering. This makes it possible to achieve a
61 cache hit without blocking or deferring off the main thread, which is impossible when
159 the main function of the in-memory cache is to allow for flickerless rotation. Using a
160 singleton pattern allows the bitmap cache to outlive the activity. If instead you create the
164 <h4 id="lru-cache">Example LRU cache</h4>
166 <p>The Volley toolbox provides a standard cache implementation via the
169 in-memory LRU bitmap cache that implements the {@code ImageLoader.ImageCache} interface.
170 You may want to set up your cache as a singleton; for more discussion of this topic, see
210 // Returns a cache size equal to approximately three screens worth of images.
225 cache:</p>