{"id":13420458,"url":"https://github.com/jvirkki/libbloom","last_synced_at":"2025-10-22T06:29:49.790Z","repository":{"id":3463476,"uuid":"4517774","full_name":"jvirkki/libbloom","owner":"jvirkki","description":"A simple and small bloom filter implementation in plain C.","archived":false,"fork":false,"pushed_at":"2022-09-18T06:28:05.000Z","size":2598,"stargazers_count":282,"open_issues_count":2,"forks_count":112,"subscribers_count":11,"default_branch":"master","last_synced_at":"2024-04-23T14:11:39.265Z","etag":null,"topics":["bloom-filter","c"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jvirkki.png","metadata":{"files":{"readme":"README","changelog":"ChangeLog","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-06-01T08:57:30.000Z","updated_at":"2024-04-03T07:03:45.000Z","dependencies_parsed_at":"2023-01-11T16:16:54.569Z","dependency_job_id":null,"html_url":"https://github.com/jvirkki/libbloom","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jvirkki%2Flibbloom","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jvirkki%2Flibbloom/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jvirkki%2Flibbloom/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jvirkki%2Flibbloom/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jvirkki","download_url":"https://codeload.github.com/jvirkki/libbloom/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221553285,"owners_count":16841998,"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","c"],"created_at":"2024-07-30T22:01:34.091Z","updated_at":"2025-10-22T06:29:44.758Z","avatar_url":"https://github.com/jvirkki.png","language":"C","funding_links":[],"categories":["TODO scan for Android support in followings","C"],"sub_categories":[],"readme":"\nIntroduction\n------------\nThis is libbloom, a simple and small bloom filter implementation in C.\n\nIf you are reading this you probably already know about bloom filters\nand why you might use one. If not, the wikipedia article is a good intro:\nhttp://en.wikipedia.org/wiki/Bloom_filter\n\n\nBuilding\n--------\nThe Makefile assumes GNU Make, so run 'make' or 'gmake' as appropriate\non your system.\n\nSee Makefile comments for other build options.\n\nThe shared library will be in ./build/libbloom.so\nA static library will be in ./build/libbloom.a\n\n\nSample Usage\n------------\n\n#include \"bloom.h\"\n\nstruct bloom bloom;\nbloom_init2(\u0026bloom, 1000000, 0.01);\nbloom_add(\u0026bloom, buffer, buflen);\n\nif (bloom_check(\u0026bloom, buffer, buflen)) {\n  printf(\"It may be there!\\n\");\n}\n\n\nDocumentation\n-------------\nRead bloom.h for more detailed documentation on the public interfaces.\n\n\nLicense\n-------\nThis code (except MurmurHash2) is under BSD license. See LICENSE file.\n\nSee murmur2/README for info on MurmurHash2.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjvirkki%2Flibbloom","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjvirkki%2Flibbloom","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjvirkki%2Flibbloom/lists"}