apache / datasketches-java

A software library of stochastic streaming algorithms, a.k.a. sketches.
https://datasketches.apache.org
Apache License 2.0
893 stars 209 forks source link

Added new method #559

Closed leerho closed 4 months ago

leerho commented 4 months ago

Added new method to compute absolute maximum number of storage bytes required for a CompactSketch given the configured number of nominal entries (power of 2).

The other method of a similar name really didn't need to be public, but it is used extensively in test. Making it package-private now would force a major release.

Deprecated the old method as a public method.

Added a test.