MVN

com.avast : big-map_2.11

Maven & Gradle

Oct 24, 2016
3 stars

BigMap · In some data processing tasks we need to use huge maps or sets that are bigger than available JVM heap space or they are loading too slow to standard Java or Scala Maps. We use TSV format (text file with tab separated columns) for persist this kind of Maps or Sets. Some columns are used as a key and rest of columns as a value. Idea of this library is simple. We can prepare these maps once (sort by key), store it to file and then use it as memory mapped file. Searching key in sorted file has log(n) complexity. If more processes uses the same memory mapped file, it exists in memory just once (on Linux). This file can be loaded lazy by OS.

<dependency>
    <groupId>com.avast</groupId>
    <artifactId>big-map_2.11</artifactId>
    <version>1.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.avast : big-map_2.11 to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.1

All Versions

Choose a version of com.avast : big-map_2.11 to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.1
big-map_2.11-1.1

How to add a dependency to Maven

Add the following com.avast : big-map_2.11 maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.avast</groupId>
    <artifactId>big-map_2.11</artifactId>
    <version>1.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.avast : big-map_2.11 gradle dependency to your build.gradle file:

implementation 'com.avast:big-map_2.11:1.1'

Gradle Kotlin DSL: Add the following com.avast : big-map_2.11 gradle kotlin dependency to your build.gradle.kts file:

implementation("com.avast:big-map_2.11:1.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.avast : big-map_2.11 sbt scala dependency to your build.sbt file:

libraryDependencies += "com.avast" % "big-map_2.11" % "1.1"

Advertisement

Dependencies from Group

Apr 16, 2014
11 usages
5 stars
Feb 02, 2023
7 usages
194 stars
Jan 23, 2023
5 usages
5 stars
Jan 23, 2023
5 usages
5 stars
Jul 23, 2015
4 usages
1 stars

Discover Dependencies