Skip to content

Releases: apache/datasketches-memory

Apache Release 1.2.0-incubating

21 Nov 18:50
Compare
Choose a tag to compare

Removes a check that required the runtime JDK to be JDK-8. This does not change the requirement that JDK-8 is required for full runtime operation. However in environments that do not use the advanced off-heap (direct) capabilities of Memory this module may still work in JDK versions later than JDK-8. However, there is no guarantee of this as this code has not been fully refactored and tested to operate in these later versions. Caveat Emptor.

This release was created for the convenience of some major users that need to do testing in versions later than JDK-8, and do not use the advanced features of Memory.

There are no other significant changes in this version compared to the previous 1.1.0-incubating release.

1.2.0-incubating-RC1

24 Nov 00:02
Compare
Choose a tag to compare
Release Candidate

Apache Release 1.1.0-incubating

29 Aug 02:22
Compare
Choose a tag to compare

This release came from RC2, which fixed some problems in the structure of the POM file of
RC1. There are no other changes.

1.1.0-incubating-RC1

29 Aug 02:23
Compare
Choose a tag to compare
1.1.0-incubating-RC1 Pre-release
Pre-release

This candidate was not released. There were some structural problems in the POM file.

Apache Release 1.0.0-incubating

02 Aug 23:46
Compare
Choose a tag to compare

This is the first release as Apache DataSketches-memory (incubating). This is a work-in-progress as it doesn't have all the licensing details quite right. But the code is good and passes all the tests. There are no significant code changes from the previous release. There will be another release coming with some speed improvements. So we suggest that you wait for the next release.

memory-0.12.2

09 Apr 23:33
Compare
Choose a tag to compare

Added new functionality.

XxHash is now not only available from Memory, it also is directly available for hashing primitive arrays. See class XxHash64.

Added xxHash, WritableMemory.allocate(capacity, ByteOrder)

05 Dec 02:45
Compare
Choose a tag to compare
  • Added xxHash(...) that is accessible via Memory or Buffer and also replaces the slow hashCode().

  • Added WritableMemory.allocate(capacity, ByteOrder)

  • Added LGTM integration and badges.

  • Javadoc improvements & code cleanup.

Improved performance, expanded API

06 Jul 23:18
Compare
Choose a tag to compare
memory-0.12.0

[maven-release-plugin] copy for tag memory-0.12.0

Added Non-Native Endianness

05 May 02:21
Compare
Choose a tag to compare
  • Byte arrays can be wrapped with optional ByteOrder specified with non-native endianness. Any putting or getting of multibyte primitives or primitive arrays into this byte array will be automatically byte-swapped.

  • The endianness of ByteBuffers will be detected when wrapping the ByteBuffer. Any putting or getting of primitives will be automatically byte-swapped.

  • This release includes some minor API changes to make them more understandable.

  • This release includes some bug fixes.

Added PutCharsToUtf8() and GetCharsFromUtf8()

19 Jan 01:36
Compare
Choose a tag to compare
  • Added PutCharsToUtf8() and GetCharsFromUtf8()

These methods have been specifically designed to avoid garbage generation during the conversions. The speeds are comparable with the Java built-in methods.

  • Made the bounds checking more conservative when putting and getting arrays, where the cost of the bounds check is negligible when compared to the cost of internal array copies.

  • Cleaned up some of the object construction cost of the ResourceState class.