208209210211212213214
/** * Initializes the client HTTP cache */ public static Cache initCache(Abdera abdera) { return new LRUCache(abdera); }
148149150151152153154
* Initializes the client HTTP cache */ public Cache initCache(CacheFactory factory) { Cache cache = null; if (factory != null) cache = factory.getCache(abdera); return (cache != null) ? cache : new LRUCache(abdera); }
191192193194195196197
145146147148149150151