24252627282930
* setCache the underlying Cache instance. * @return PojoCache */ public static PojoCache createCache(String config) { return new PojoCacheImpl(config, true); }
37383940414243
* @param start If true, it will start the cache life cycle. * @return PojoCache */ public static PojoCache createCache(String config, boolean start) { return new PojoCacheImpl(config, start); }
49505152535455
* @param start If true, it will start the cache life cycle. * @return PojoCache */ public static PojoCache createCache(Configuration config, boolean start) { return new PojoCacheImpl(config, start); }