}
private AsyncStore createAsyncStore() throws CacheLoaderException {
DummyInMemoryCacheStore backendStore = createBackendStore("async2");
AsyncStoreConfig asyncCfg = new AsyncStoreConfig();
asyncCfg.modificationQueueSize(0);
AsyncStore store = new AsyncStore(backendStore, asyncCfg);
store.init(backendStore.getCacheStoreConfig(), null, new TestObjectStreamMarshaller());
store.start();
return store;
}