MVN

net.openhft : smoothie-map

Maven & Gradle

Apr 01, 2016

SmoothieMap · SmoothieMap is a java.util.Map implementation with worst put(k, v) operation latencies more than 100 times smaller than in ordinary hash table implementations like java.util.HashMap.

<dependency>
    <groupId>net.openhft</groupId>
    <artifactId>smoothie-map</artifactId>
    <version>1.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of net.openhft : smoothie-map to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.3

All Versions

Choose a version of net.openhft : smoothie-map to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.3
smoothie-map-1.3
1.2
smoothie-map-1.2
1.1
smoothie-map-1.1
1.0
smoothie-map-1.0

How to add a dependency to Maven

Add the following net.openhft : smoothie-map maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>net.openhft</groupId>
    <artifactId>smoothie-map</artifactId>
    <version>1.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following net.openhft : smoothie-map gradle dependency to your build.gradle file:

implementation 'net.openhft:smoothie-map:1.3'

Gradle Kotlin DSL: Add the following net.openhft : smoothie-map gradle kotlin dependency to your build.gradle.kts file:

implementation("net.openhft:smoothie-map:1.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following net.openhft : smoothie-map sbt scala dependency to your build.sbt file:

libraryDependencies += "net.openhft" % "smoothie-map" % "1.3"