{"id":36494923,"url":"https://github.com/qichengzx/bitcask","last_synced_at":"2026-01-12T02:00:09.235Z","repository":{"id":57646712,"uuid":"405522730","full_name":"qichengzx/bitcask","owner":"qichengzx","description":"Bitcask is a log-structured fast KV store.","archived":false,"fork":false,"pushed_at":"2023-03-07T07:59:29.000Z","size":41,"stargazers_count":15,"open_issues_count":3,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-06-20T16:51:57.760Z","etag":null,"topics":["bitcask","bitcask-like","key-value","kv","kvstore","riak"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/qichengzx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2021-09-12T01:54:09.000Z","updated_at":"2023-07-14T21:37:54.000Z","dependencies_parsed_at":"2024-06-20T16:37:09.581Z","dependency_job_id":"4746b126-822a-4d7f-a176-d4ddd74d51de","html_url":"https://github.com/qichengzx/bitcask","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/qichengzx/bitcask","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qichengzx%2Fbitcask","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qichengzx%2Fbitcask/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qichengzx%2Fbitcask/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qichengzx%2Fbitcask/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qichengzx","download_url":"https://codeload.github.com/qichengzx/bitcask/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qichengzx%2Fbitcask/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28331499,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T00:36:25.062Z","status":"ssl_error","status_checked_at":"2026-01-12T00:36:15.229Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["bitcask","bitcask-like","key-value","kv","kvstore","riak"],"created_at":"2026-01-12T02:00:07.027Z","updated_at":"2026-01-12T02:00:09.185Z","avatar_url":"https://github.com/qichengzx.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"Bitcask\n----\n\nBitcask is a log-structured fast KV store.\n\nThis project is an implementation of Bitcask written in Go.\n\n[Bitcask intro here](https://riak.com/assets/bitcask-intro.pdf)\n\n## Example\n\n```go\npackage main\n\nimport (\n\t\"github.com/qichengzx/bitcask\"\n\t\"log\"\n)\n\nfunc main() {\n\td, err := bitcask.New(\"your/path/here\")\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tdefer d.Close()\n\n\td.Put([]byte(\"bitcask\"), []byte(\"bitcask is a log-structured fast KV store\"))\n\tv, _ := d.Get([]byte(\"bitcask\"))\n\tlog.Println(string(v))\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqichengzx%2Fbitcask","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqichengzx%2Fbitcask","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqichengzx%2Fbitcask/lists"}