Setting 8.0.0-M8 StoreSettings.setAsynchronous(false) does not prevent
pageStore from being wrapped with AsynchronousPageStore - am I missing
something?
Thanks, regards, Greg Johnson
DefaultPageManagerProvider.java:
if (dataStore.canBeAsynchronous()) {
int capacity = storeSettings.getAsynchronousQueueCapacity();
dataStore = new AsynchronousDataStore(dataStore, capacity);
pageStore = newPageStore(dataStore);
if (pageStore.canBeAsynchronous()) {
pageStore = new AsynchronousPageStore(pageStore, capacity);
}
} else {
pageStore = newPageStore(dataStore);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]