{"id":16950591,"url":"https://github.com/vcaesar/store","last_synced_at":"2026-05-18T00:32:54.189Z","repository":{"id":64308126,"uuid":"439552497","full_name":"vcaesar/store","owner":"vcaesar","description":"Go common key-val database API","archived":false,"fork":false,"pushed_at":"2022-02-23T23:22:13.000Z","size":22,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-09T03:11:43.074Z","etag":null,"topics":["database","go","key-value"],"latest_commit_sha":null,"homepage":"","language":"Go","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/vcaesar.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2021-12-18T07:14:24.000Z","updated_at":"2022-02-19T09:36:56.000Z","dependencies_parsed_at":"2023-01-15T11:15:29.628Z","dependency_job_id":null,"html_url":"https://github.com/vcaesar/store","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/vcaesar/store","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vcaesar%2Fstore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vcaesar%2Fstore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vcaesar%2Fstore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vcaesar%2Fstore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vcaesar","download_url":"https://codeload.github.com/vcaesar/store/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vcaesar%2Fstore/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33160481,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T22:39:12.733Z","status":"ssl_error","status_checked_at":"2026-05-17T22:39:10.741Z","response_time":107,"last_error":"SSL_read: 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":["database","go","key-value"],"created_at":"2024-10-13T21:58:05.212Z","updated_at":"2026-05-18T00:32:54.174Z","avatar_url":"https://github.com/vcaesar.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# store\n\n## Examples\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"log\"\n\t\"os\"\n\n\t\"github.com/vcaesar/store\"\n)\n\nfunc main() {\n\tTestDBName := \"test.db\"\n\tdb, err := store.Open(TestDBName, \"badger\")\n\tif err != nil {\n\t\tlog.Fatal(\"Store open: \", err)\n\t}\n\tlog.Println(\"db test...\")\n\tos.MkdirAll(TestDBName, 0777)\n\n\terr = db.Set([]byte(\"key1\"), []byte(\"value1\"))\n\tif err != nil {\n\t\tfmt.Println(\"db set: \", err)\n\t}\n\n\thas, err := db.Has([]byte(\"key1\"))\n\tfmt.Println(\"db has: \", has, err)\n\n\tbuf, err := db.Get([]byte(\"key1\"))\n\tfmt.Println(\"db get: \", string(buf), err)\n\n\tdb.Close()\n\t// os.RemoveAll(TestDBName)\n}\n\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvcaesar%2Fstore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvcaesar%2Fstore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvcaesar%2Fstore/lists"}