PFCOUNT在技术上是写命令

This commit is contained in:
智能大石头 2025-05-05 08:17:42 +08:00
parent ad622567bd
commit e0d0ff20c7
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ public class HyperLogLog : RedisBase
/// 返回存储在HyperLogLog结构体的该变量的近似基数如果该变量不存在,则返回0。
/// 当参数为多个key时返回这些HyperLogLog并集的近似基数这个值是将所给定的所有key的HyperLoglog结构合并到一个临时的HyperLogLog结构中计算而得到的。
/// </remarks>
public Int32 Count => Execute((rc, k) => rc.Execute<Int32>("PFCOUNT", Key));
public Int32 Count => Execute((rc, k) => rc.Execute<Int32>("PFCOUNT", Key), true);
/// <summary>合并</summary>
/// <remarks>