Files
go-zero/example/bloom/bloom.go
2020-07-26 17:09:05 +08:00

19 lines
382 B
Go

package main
import (
"fmt"
"zero/core/bloom"
"zero/core/stores/redis"
)
func main() {
store := redis.NewRedis("localhost:6379", "node")
filter := bloom.New(store, "testbloom", 64)
filter.Add([]byte("kevin"))
filter.Add([]byte("wan"))
fmt.Println(filter.Exists([]byte("kevin")))
fmt.Println(filter.Exists([]byte("wan")))
fmt.Println(filter.Exists([]byte("nothing")))
}