r

root

A scalable, concurrent, in-memory Key Value (KV) map. Oak implements a concurrent Key-Value map that can keep all keys and values off-heap. This enables working with bigger heap sizes than JVM's managed heap. OakMap implements an API similar to the industry standard Java8 ConcurrentNavigableMap API. It provides strong (atomic) semantics for read, write, and read-modify-write, as well as (non-atomic) range query (scan) operations, both forward and backward. OakMap is optimized for big keys and values, in particular, for incremental maintenance of objects (update in-place). It is faster and scales better with additional CPU cores than the popular Java ConcurrentNavigableMap ConcurrentSkipListMap
https://github.com/yahoo/Oak
The Apache License, Version 2.0
Yahoo Inc.
Anastasia Braginsky Hagar Meir Dmitry Basin Gali Sheffi Eshcar Hillel Edward Bortnikov Eran Meir
文件下载
文件名 操作
root-0.2.2.pom 下载
Apache Maven
<dependency>
  <groupId>com.yahoo.oak</groupId>
  <artifactId>root</artifactId>
  <version>0.2.2</version>
  <type>pom</type>
</dependency>
Gradle Groovy
implementation 'com.yahoo.oak:root:0.2.2'
Gradle Kotlin
implementation("com.yahoo.oak:root:0.2.2")
Scala SBT
libraryDependencies += "com.yahoo.oak" % "root" % "0.2.2"
Groovy Grape
@Grapes(
  @Grab(group='com.yahoo.oak', module='root', version='0.2.2')
)
Apache Ivy
<dependency org="com.yahoo.oak" name="root" rev="0.2.2" />
Leiningen
[com.yahoo.oak/root "0.2.2"]
Apache Buildr
'com.yahoo.oak:root:jar:0.2.2'
本项目依赖