{"id":37185113,"url":"https://github.com/deis/memkv","last_synced_at":"2026-01-14T21:24:25.616Z","repository":{"id":31184224,"uuid":"34744766","full_name":"deis/memkv","owner":"deis","description":"Simple in-memory key/value store backed by a map","archived":false,"fork":true,"pushed_at":"2016-01-29T17:31:01.000Z","size":24,"stargazers_count":1,"open_issues_count":0,"forks_count":2,"subscribers_count":17,"default_branch":"master","last_synced_at":"2024-06-19T04:17:18.150Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"kelseyhightower/memkv","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/deis.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}},"created_at":"2015-04-28T17:15:27.000Z","updated_at":"2016-07-01T17:37:08.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/deis/memkv","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/deis/memkv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deis%2Fmemkv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deis%2Fmemkv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deis%2Fmemkv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deis%2Fmemkv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deis","download_url":"https://codeload.github.com/deis/memkv/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deis%2Fmemkv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28434949,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T18:57:19.464Z","status":"ssl_error","status_checked_at":"2026-01-14T18:52:48.501Z","response_time":107,"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":[],"created_at":"2026-01-14T21:24:24.965Z","updated_at":"2026-01-14T21:24:25.605Z","avatar_url":"https://github.com/deis.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# memkv\n\nSimple in memory k/v store.\n\n[![Build Status](https://travis-ci.org/kelseyhightower/memkv.svg)](https://travis-ci.org/kelseyhightower/memkv) [![GoDoc](https://godoc.org/github.com/kelseyhightower/memkv?status.png)](https://godoc.org/github.com/kelseyhightower/memkv)\n\n## Usage\n\n```Go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"log\"\n\n\t\"github.com/kelseyhightower/memkv\"\n)\n\nfunc main() {\n\ts := memkv.New()\n\ts.Set(\"/myapp/database/username\", \"admin\")\n\ts.Set(\"/myapp/database/password\", \"123456789\")\n\ts.Set(\"/myapp/port\", \"80\")\n\tkv, err := s.Get(\"/myapp/database/username\")\t\n\tif err != nil {\n\t\tlog.Fatal(err)\n\t}\n\tfmt.Printf(\"Key: %s, Value: %s\\n\", kv.Key, kv.Value)\n\tks, err := s.GetAll(\"/myapp/*/*\")\n\tif err == nil {\n\t\tfor _, kv := range ks {\n\t\t\tfmt.Printf(\"Key: %s, Value: %s\\n\", kv.Key, kv.Value)\n\t\t}\n\t}\n}\n```\n\n---\n\n```\nKey: /myapp/database/username, Value: admin\nKey: /myapp/database/password, Value: 123456789\nKey: /myapp/database/username, Value: admin\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeis%2Fmemkv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeis%2Fmemkv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeis%2Fmemkv/lists"}