{"id":21037201,"url":"https://github.com/kadnan/gkeevee","last_synced_at":"2026-04-29T06:34:45.048Z","repository":{"id":137509222,"uuid":"258155138","full_name":"kadnan/gkeevee","owner":"kadnan","description":"A simple file based key/value store DB in Go language","archived":false,"fork":false,"pushed_at":"2020-04-27T13:54:10.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-02T18:29:23.707Z","etag":null,"topics":["database","go","golang","key-value"],"latest_commit_sha":null,"homepage":null,"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/kadnan.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-04-23T09:29:44.000Z","updated_at":"2020-04-27T13:54:12.000Z","dependencies_parsed_at":"2023-04-05T18:18:48.552Z","dependency_job_id":null,"html_url":"https://github.com/kadnan/gkeevee","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kadnan/gkeevee","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kadnan%2Fgkeevee","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kadnan%2Fgkeevee/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kadnan%2Fgkeevee/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kadnan%2Fgkeevee/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kadnan","download_url":"https://codeload.github.com/kadnan/gkeevee/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kadnan%2Fgkeevee/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32414419,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T06:29:02.080Z","status":"ssl_error","status_checked_at":"2026-04-29T06:29:00.631Z","response_time":110,"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":["database","go","golang","key-value"],"created_at":"2024-11-19T13:24:52.344Z","updated_at":"2026-04-29T06:34:45.040Z","avatar_url":"https://github.com/kadnan.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gKeeVee - A simple key-value store DB in Go\n[![Build Status](https://travis-ci.org/kadnan/gkeevee.svg?branch=master)](https://travis-ci.org/kadnan/gkeevee)\n\n`gKeeVee` is a simple file based key-value store DB written in Go language. It uses [MessagePack](https://msgpack.org/index.html) to store the compressed data into a file.\n\n## What's new in gKeeVee?\n\nInfact nothing. I made this package as a part of my journey learning Golang. There are many other packages available like **Badger** which provides more facilities. \n\n`gKeeVee` is a very simple db that only accepts `strings` as value. It is by design. If you want to store values like `int`, `float` etc, you will have to cast them to strings first and then store. For complex structures like `map` or `struct` you can convert them into a JSON string and store them as value.\n\n## Installation\n\n- Install `msgpack` package:\n`go get github.com/vmihailenco/msgpack/`\n\n## Test\n`go test -v`\n\n## Example\n\n```\npackage main\n\nimport (\n\t\"fmt\"\n\n\tgkeevee \"github.com/kadnan/gKeeVee/gKeeVee\"\n)\n\nfunc main() {\n\tf, err := gkeevee.Load(\"mytesting.db\")\n\tif err != nil {\n\t\tprintln(err)\n\t}\n\tgkeevee.Set(\"FNAME\", \"ADNAN\")\n\tgkeevee.Set(\"LNAME\", \"SIDDIQI\")\n\n\tval, err := gkeevee.Get(\"FNAME\")\n\tif err != nil {\n\t\tfmt.Println(err)\n\t}\n\tfmt.Println(val)\n\t_, err = gkeevee.Save(f)\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkadnan%2Fgkeevee","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkadnan%2Fgkeevee","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkadnan%2Fgkeevee/lists"}