Files
bloomtool/internal/bloom/bloomfile.proto
2025-11-03 14:37:59 +08:00

16 lines
499 B
Protocol Buffer
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
syntax = "proto3";
package bloom;
option go_package = "internal/bloom;bloom";
message Header {
uint64 Version = 1 ; // 版本当前为1
uint64 M = 2 ; // 存贮空间上限
uint64 K = 3 ; // hash函数个数
uint64 ElementsMax = 4 ; // 创建空间元素数量
uint64 ElementsAdded = 5 ; // 实际加入元素数量
double FalsePositiveRate = 6 ; // 假阳率
}