Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
lemire committed Sep 28, 2023
1 parent 46401e8 commit 99a255d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,5 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: fmt
run: diff <(gofmt -s -d .) <(printf "")

- name: Test 386
run: GOOS=linux GOARCH=386 go test ./...
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Bloom filters
[![Go Report Card](https://goreportcard.com/badge/github.com/bits-and-blooms/bloom)](https://goreportcard.com/report/github.com/bits-and-blooms/bloom)
[![Go Reference](https://pkg.go.dev/badge/github.com/bits-and-blooms/bloom.svg)](https://pkg.go.dev/github.com/bits-and-blooms/bloom/v3)

This library is used by popular systems such as [Milvus](https://github.com/milvus-io/milvus) and [beego](https://github.com/beego/beego).

A Bloom filter is a concise/compressed representation of a set, where the main
requirement is to make membership queries; _i.e._, whether an item is a
member of a set. A Bloom filter will always correctly report the presence
Expand Down Expand Up @@ -49,6 +51,7 @@ For numerical data, we recommend that you look into the encoding/binary library.

Godoc documentation: https://pkg.go.dev/github.com/bits-and-blooms/bloom/v3


## Installation

```bash
Expand Down

0 comments on commit 99a255d

Please sign in to comment.