return value1.equals(value2);
}
@Override
protected DataStore<Integer, String> createStore() throws Exception {
StoreConfig config = new StorePartitionConfig(new File(getHomeDir(), "store"), _indexStart, _indexCount);
config.setSegmentFileSizeMB(16);
config.setNumSyncBatches(10);
config.setBatchSize(100);
ObjectStoreFactory<Integer, String> factory = new StaticObjectArrayFactory<String>();
return factory.create(config, new IntSerializer(), new StringSerializerUtf8());
}