Registry / utility / concurrent-trees

concurrent-trees

JSON →
library2.6.1javamavenunverified

A Java library providing concurrent Radix Trees and Suffix Trees for efficient prefix and substring search.

<dependency> <groupId>com.googlecode.concurrent-trees</groupId> <artifactId>concurrent-trees</artifactId> <version>2.6.1</version> </dependency>
INSTALL
IMPORT
SIG · CONCURRENT-TREES
C
concurrent-trees
utilityjavav2.6.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

ConcurrentRadixTree
com.googlecode.concurrenttrees.radix.ConcurrentRadixTree

Insert and retrieve key-value pairs in a concurrent radix tree.

import com.googlecode.concurrenttrees.radix.ConcurrentRadixTree; import com.googlecode.concurrenttrees.radix.node.concrete.DefaultCharArrayNodeFactory; ConcurrentRadixTree<Integer> tree = new ConcurrentRadixTree<>(new DefaultCharArrayNodeFactory()); tree.put("hello", 1); tree.put("world", 2); System.out.println(tree.getValueForExactKey("hello")); // prints: 1
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2.6.1latest on Maven
Audit
Dependencies

No dependency data recorded yet.

Agent activity
10 hits · last 30 days
node
10
Resources
concurrent-trees — mvn dependency:get concurrent-trees · libregistry