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
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容