use of com.thinkaurelius.titan.diskstorage.keycolumnvalue.cache.NoKCVSCache in project titan by thinkaurelius.
the class MultiWriteKeyColumnValueStoreTest method open.
public void open() throws BackendException {
manager = openStorageManager();
tx = new CacheTransaction(manager.beginTransaction(getTxConfig()), manager, bufferSize, Duration.ofMillis(100), true);
store1 = new NoKCVSCache(manager.openDatabase(storeName1));
store2 = new NoKCVSCache(manager.openDatabase(storeName2));
}
Aggregations