16 lines
499 B
Protocol Buffer
16 lines
499 B
Protocol Buffer
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 ; // 假阳率
|
||
}
|