public ObjectStore createObjectStore(DataRowStore dataRowCache) {
boolean sync = runtimeProperties.getBoolean(Constants.SERVER_CONTEXTS_SYNC_PROPERTY, true);
return sync ? new ObjectStore(dataRowCache, retainStrategy.createObjectMap())
: new NoSyncObjectStore(dataRowCache, retainStrategy.createObjectMap());
}