Merge pull request #178 from apache/move_to_TLP

Remove incubat*
tree: 291b53c0160ac1c55f4bae7a9b9ea42d6767c7c6
  1. .github/
  2. build/
  3. common/
  4. cpc/
  5. fi/
  6. hll/
  7. kll/
  8. python/
  9. sampling/
  10. theta/
  11. tuple/
  12. .asf.yaml
  13. .gitignore
  14. .gitmodules
  15. CMakeLists.txt
  16. LICENSE
  17. MANIFEST.in
  18. NOTICE
  19. pyproject.toml
  20. README.md
  21. setup.py
README.md

DataSketches Core C++ Library Component

This is the core C++ component of the DataSketches library. It contains all of the key sketching algorithms that are in the Java component and can be accessed directly from user applications.

This component is also a dependency of other components of the library that create adaptors for target systems, such as PostgreSQL.

Note that we have a parallel core component for Java implementations of the same sketch algorithms, datasketches-java.

Please visit the main DataSketches website for more information.

If you are interested in making contributions to this site please see our Community page for how to contact us.


This code requires C++11. It was tested with GCC 4.8.5 (standard in RedHat at the time of this writing), GCC 8.2.0 and Apple LLVM version 10.0.1 (clang-1001.0.46.4)

This includes Python bindings. For the Python interface, see the README notes in the python subdirectory.

This library is header-only. The build process provided is only for building unit tests and the python library.

Building the unit tests requires cmake 3.12.0 or higher.

Installing the latest cmake on OSX: brew install cmake

Building and running unit tests using cmake for OSX and Linux:

	$ cd build
	$ cmake ..
	$ make
	$ make test

Building and running unit tests using cmake for Windows from the command line:

	$ cd build
	$ cmake ..
	$ cd ..
	$ cmake --build build --config Release
	$ cmake --build build --config Release --target RUN_TESTS