Replaced Tags.filenameBytes with a SortedSet<Tag>. Tags are now stored as longs (variable length encoded) in the PersistenMap. Tags.filenameBytes was introduced to reduce memory consumption, when all tags were hold in memory. Tags are now stored in a PersistentMap and only read when needed. Moved the VariableByteEncoder into its own project, because it was needed by pdb-api.
14 lines
332 B
Groovy
14 lines
332 B
Groovy
apply plugin: 'antlr'
|
|
|
|
dependencies {
|
|
compile project(':byte-utils')
|
|
compile project(':file-utils')
|
|
compile project(':pdb-utils')
|
|
|
|
compile 'org.apache.logging.log4j:log4j-core:2.10.0'
|
|
compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.10.0'
|
|
compile 'org.lucares:primitiveCollections:0.1.20180908084945'
|
|
}
|
|
|
|
|