LeeCampbell / HdrHistogram.NET

Port of the HdrHistorgram to .NET/C#
Other
18 stars 3 forks source link

Auto-sizing #67

Closed LeeCampbell closed 7 years ago

LeeCampbell commented 8 years ago

Guidance from Gil:

Auto-sizing is another useful thing… Not having to specify an initial range is useful for lazy folks (who are ok with resizing latencies in the recording path). It is also useful as a way to avoid overflowing wrongly-initial-sized histograms: unexpected large values result in a resize rather than an AIOOB exception. If your are ok with taking the latency hit (and potential mem size hit) for that, it's cleaner to code to.

LeeCampbell commented 7 years ago

Moved to https://github.com/HdrHistogram/HdrHistogram.NET/issues/41