Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Folly's implementation of T-Digest to README
Folly's implementation of t-digests is lightning fast and easy to use. * Easy to use APIs for both single digest aggregation and sliding window aggregation * It's cpu-local buffering enables 60ns writes across threads. * It's merge algorithm leverages std::inplace_merge to speed up digest aggregation (across sliding windows, or when merging cpu-local buffers) * It's smart about it's choice of k function to avoid expensive floating point operations * Well tested, with benchmarks and benchmark results included in the results. * Used in production at Facebook.
- Loading branch information