commit | a580985bdba43c3a9380514b7e7eb774e4651e40 | [log] [tgz] |
---|---|---|
author | Jon Malkin <786705+jmalkin@users.noreply.github.com> | Fri Apr 18 21:35:51 2025 -0700 |
committer | GitHub <noreply@github.com> | Fri Apr 18 21:35:51 2025 -0700 |
tree | 3c8cc8eec96dbca99c5da647146efa4f58a478ea | |
parent | 59162fdbe81d506b659d9453cca2a4ea1f103c29 [diff] | |
parent | ffd61825aa273cb5df94e2ab5a911e9552efbd47 [diff] |
Merge pull request #267 from apache/fix_notice Fix notice
=================
This Memory component is general purpose, has no external runtime dependencies and can be used in any application that needs to manage data structures inside or outside the Java heap.
Please visit the main DataSketches website for more information.
If you are interested in making contributions to this Memory component please see our Community page.
The goal of this component of the DataSketches library is to provide a high performance access API for accessing four different types of memory resources:
Each of the four resource types is accessed using different API methods in the Memory component.
Note: primitive := {byte, short, int, long, float, double}
Heap via primitive arrays:
Heap via ByteBuffer
Off-Heap, Direct via direct allocation:
Off-Heap, Direct via (Direct) ByteBuffer
Off-Heap, Memory-Mapped Files
Starting with release datasketches-memory-5.0.0, this Memory component supports only Java 21 when compiling from source and may work with later Java versions at runtime.
NOTES:
The Maven build requires JDK-21 to compile:
To run normal unit tests:
mvn clean test
To run javadoc:
mvn clean javadoc:javadoc -DskipTests=true
To run the eclipse plugin on this project, use:
mvn clean eclipse:eclipse -DskipTests=true
To install jars built from the downloaded source:
mvn clean install -DskipTests=true
This will create the following Jars:
For releasing to Nexus, please use the sign-deploy-jar.sh
script in the scripts directory. See the documentation within the script for usage instructions.