use PersistentMap in DataStore

Replaces the use of in-memory data structures with the PersistentMap.
This is the crucial step in reducing memory usage for both persistent
storage and main memory.
This commit is contained in:
2018-11-17 09:45:35 +01:00
parent 3ccf526608
commit fce0f6a04d
12 changed files with 379 additions and 459 deletions

View File

@@ -15,7 +15,6 @@ import java.util.Random;
import java.util.UUID;
import java.util.concurrent.atomic.AtomicInteger;
import org.lucares.pdb.map.PersistentMap.Visitor;
import org.lucares.utils.file.FileUtils;
import org.testng.Assert;
import org.testng.annotations.AfterMethod;