commit | 90b66895c24d843f455ada80e9cc82927188cae7 | [log] [tgz] |
---|---|---|
author | Jon Malkin <jmalkin@users.noreply.github.com> | Wed Jun 03 10:11:25 2020 -0700 |
committer | GitHub <noreply@github.com> | Wed Jun 03 10:11:25 2020 -0700 |
tree | bfddfe257210dc42be1de267405a0e4e9264172e | |
parent | dbc8b4a555548aa4b6b35c5c3b9fbf980d2200e8 [diff] | |
parent | 6f04d3f16938a3a7dc62a0c3c912b92bcb5d289f [diff] |
Merge pull request #155 from apache/patch_for_rc4 Apply changes to create rc4
This is a C++ version of the DataSketches core library. See Apache DataSketches home
Apache DataSketches is an open source, high-performance library of stochastic streaming algorithms commonly called “sketches” in the data sciences. Sketches are small, stateful programs that process massive data as a stream and can provide approximate answers, with mathematical guarantees, to computationally difficult queries orders-of-magnitude faster than traditional, exact methods.
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:
$ mkdir build $ cd build $ cmake .. $ make $ make test
Building and running unit tests using cmake for Windows from the command line:
$ mkdir build $ cd build $ cmake .. $ cd .. $ cmake --build build --config Release $ cmake --build build --config Release --target RUN_TESTS
We have two ASF the-ASF.slack.com slack channels:
For bugs and performance issues please subscribe: Issues for datasketches-cpp
For general questions about using the library please subscribe: Users Mail List
If you are interested in contributing please subscribe: Developers Mail list