Files
perfdb/data-store/build.gradle
Andreas Huber 1182d76205 replace the FolderStorage with DiskStorage
- The DiskStorage uses only one file instead of millions.
  Also the block size is only 512 byte instead of 4kb, which
  helps to reduce the memory usage for short sequences.
- Update primitiveCollections to get the new LongList.range
  and LongList.rangeClosed methods.
- BSFile now stores Time&Value sequences and knows how to
  encode the time values with delta encoding.
- Doc had to do some magic tricks to save memory. The path
  was initialized lazy and stored as byte array. This is no
  longer necessary. The patch was replaced by the
  rootBlockNumber of the BSFile.
- Had to temporarily disable the 'in' queries.
- The stored values are now processed as stream of LongLists
  instead of Entry. The overhead for creating Entries is
  gone, so is the memory overhead, because Entry was an
  object and had a reference to the tags, which is
  unnecessary.
2018-09-12 09:35:07 +02:00

19 lines
490 B
Groovy

apply plugin: 'antlr'
dependencies {
compile project(':pdb-api')
compile project(':file-utils')
compile project(':pdb-utils')
compile project(':block-storage')
antlr "org.antlr:antlr4:4.7.1"
compile 'org.lucares:primitiveCollections:0.1.20180908084945'
compile 'org.apache.commons:commons-lang3:3.7'
compile 'com.google.guava:guava:26.0-jre'
compile 'org.apache.logging.log4j:log4j-core:2.10.0'
compile 'org.apache.logging.log4j:log4j-slf4j-impl:2.10.0'
}