* @param store
* @param cacheContext
*/
public LDCachingKiWiBackend(KiWiStore store, String cacheContext) {
this.cacheContext = cacheContext;
this.sail = new LDCachingKiWiSail(store);
this.repository = new SailRepository(sail);
this.persistence = new LDCachingKiWiPersistence(store.getPersistence());
}