if (cfg instanceof CacheStoreConfig) {
CacheStore tmpStore = (CacheStore) tmpLoader;
// async?
CacheStoreConfig cfg2 = (CacheStoreConfig) cfg;
if (cfg2.getAsyncStoreConfig().isEnabled()) {
tmpStore = new AsyncStore(tmpStore, cfg2.getAsyncStoreConfig());
tmpLoader = tmpStore;
}
// read only?
if (cfg2.isIgnoreModifications()) {