apache / datasketches-cpp

Core C++ Sketch Library
https://datasketches.apache.org
Apache License 2.0
225 stars 71 forks source link

Allow use of stateful Allocator passed into construtors #160

Closed jmalkin closed 3 years ago

jmalkin commented 4 years ago

Criteo's Vertica integration has noted that our current use of custom allocators is less flexible than ideal: https://github.com/criteo/vertica-datasketch

AlexanderSaydakov commented 4 years ago

Passing allocators to constructors is implemented for Tuple sketch and experimental Theta sketch (located in the "tuple" directory for now) that eventually should replace the current Theta sketch. Feedback is appreciated.

jmalkin commented 3 years ago

This should now be resolved everywhere.