use of voldemort.utils.SystemTime in project voldemort by voldemort.
the class InMemoryMultiThreadedTest method main.
public static void main(String[] args) throws Exception {
Store<byte[], byte[], byte[]> store = new VersionIncrementingStore<byte[], byte[], byte[]>(new InMemoryStorageEngine<byte[], byte[], byte[]>("test"), 0, new SystemTime());
store = new InconsistencyResolvingStore<byte[], byte[], byte[]>(store, new VectorClockInconsistencyResolver<byte[]>());
new MultithreadedStressTest(store, 5, 1000000, 10).testGetAndPut();
}
Aggregations