75767778798081828384
super(baseSail); this.store = getBaseStore(); this.cache_context = cacheContextUri; this.acceptor = acceptor; this.config = new CacheConfiguration(); if(clientConfiguration != null) { config.setClientConfiguration(clientConfiguration); } }
6869707172737475767778
this.acceptForCaching = acceptForCaching; this.config = cacheConfig; } private static CacheConfiguration createCacheConfiguration(ClientConfiguration cc) { CacheConfiguration config = new CacheConfiguration(); if (cc != null) { config.setClientConfiguration(cc); } return config; }
140141142143144145146
repository.initialize(); backend = new LDCachingKiWiBackend(store, CACHE_CONTEXT); backend.initialize(); ldcache = new LDCache(new CacheConfiguration(),backend); }
53545556575859
public LDCacheBackend() { LDCachingBackend backend = new LDCachingInfinispanBackend(); backend.initialize(); this.ldcache = new LDCache(new CacheConfiguration(), backend); }
65666768697071
@Before public void setup() { ldcache = new LDCache(new CacheConfiguration(), createBackend()); }