commit | 9ca20d44e28a7908ef9a27a6cf4e27988686c319 | [log] [tgz] |
---|---|---|
author | Jon Malkin <jmalkin@users.noreply.github.com> | Wed May 13 09:50:38 2020 -0700 |
committer | GitHub <noreply@github.com> | Wed May 13 09:50:38 2020 -0700 |
tree | 913c5d7378aa462f2cd98de7fef98531ada37c1c | |
parent | 3a1d9b3ab128085083a5168964df411eee065234 [diff] | |
parent | dbf025ae5f30250545354772dc4ac13dc1c371be [diff] |
Merge pull request #136 from apache/to_string To string
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