CardinalityEstimation通过一十分迅捷的规则估算出组里元素的数量,并储存下来。
示例代码:
ICardinalityEstimator<string> estimator = new CardinalityEstimator();estimator.Add("Alice");estimator.Add("Bob");estimator.Add("Alice");estimator.Add("George Michael");ulong numberOfuniqueElements = estimator.Count(); // will be 3
评论