{"id":15973722,"url":"https://github.com/c-bata/bloomfilter","last_synced_at":"2025-04-04T16:21:19.077Z","repository":{"id":76859048,"uuid":"176438633","full_name":"c-bata/bloomfilter","owner":"c-bata","description":"Simple BloomFilter implementation in Rust.","archived":false,"fork":false,"pushed_at":"2019-03-19T08:48:36.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-10T01:46:18.119Z","etag":null,"topics":["bloom-filter"],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/c-bata.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-03-19T06:21:12.000Z","updated_at":"2019-03-19T08:48:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"552f4d24-6d84-41d3-85c5-eeedc40f288c","html_url":"https://github.com/c-bata/bloomfilter","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c-bata%2Fbloomfilter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c-bata%2Fbloomfilter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c-bata%2Fbloomfilter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/c-bata%2Fbloomfilter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/c-bata","download_url":"https://codeload.github.com/c-bata/bloomfilter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247208404,"owners_count":20901570,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bloom-filter"],"created_at":"2024-10-07T21:06:39.928Z","updated_at":"2025-04-04T16:21:19.058Z","avatar_url":"https://github.com/c-bata.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# bloomfilter\n\nSee https://en.wikipedia.org/wiki/Bloom_filter for more details.\n\nUsage:\n\n```rust\nlet mut bloom = BloomFilter::new(16);\nbloom.set(1000);\nassert_eq!(bloom.is_exit(1000), true);\nassert_eq!(bloom.is_exit(1001), false);\n\nbloom.set(1001);\nbloom.set(1004);\nassert_eq!(bloom.is_exit(1005), false);\nassert_eq!(bloom.is_exit(1020), true);\n```\n\n**Special thanks:**\n\n* https://speakerdeck.com/kakakakakku/bloom-filter (japanese)\n\n**Next step:**\n\n* Counting filter: https://dl.acm.org/citation.cfm?id=3035963\n* Scalable bloom filter: https://haslab.uminho.pt/cbm/publications/scalable-bloom-filters\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fc-bata%2Fbloomfilter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fc-bata%2Fbloomfilter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fc-bata%2Fbloomfilter/lists"}