首次提交代码

This commit is contained in:
algotao
2025-11-03 14:37:59 +08:00
parent e60f64721c
commit d76c196fb1
311 changed files with 81709 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
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 ; // 假阳率
}