https://github.com/mostlygeek/cli-bloom
Some bloom filter cli tools
https://github.com/mostlygeek/cli-bloom
Last synced: 3 months ago
JSON representation
Some bloom filter cli tools
- Host: GitHub
- URL: https://github.com/mostlygeek/cli-bloom
- Owner: mostlygeek
- Created: 2017-06-27T06:38:15.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-27T06:38:35.000Z (almost 8 years ago)
- Last Synced: 2025-02-12T16:51:53.850Z (4 months ago)
- Language: Go
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This repo has two go source files. Compile them.
`gen.go`
Creates random number generator. `./gen 10 1000` generates 10 random numbers from 0 to 1000.
`cli-bloom.go`
Creats a program that reads input from stdin and outputs any duplicates. `./cli-bloom 1000`, will create a bloom filter with an `m` of 1000.