{"id":37091852,"url":"https://github.com/docker-archive/go-redis-server","last_synced_at":"2026-01-14T11:11:18.382Z","repository":{"id":9672612,"uuid":"11614930","full_name":"docker-archive/go-redis-server","owner":"docker-archive","description":"A Go implementation of the Redis server protocol","archived":true,"fork":false,"pushed_at":"2018-10-30T19:34:39.000Z","size":663,"stargazers_count":402,"open_issues_count":9,"forks_count":115,"subscribers_count":28,"default_branch":"master","last_synced_at":"2026-01-13T21:49:19.378Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/docker-archive.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":"2013-07-23T17:45:00.000Z","updated_at":"2025-10-04T17:34:10.000Z","dependencies_parsed_at":"2022-08-29T13:32:02.820Z","dependency_job_id":null,"html_url":"https://github.com/docker-archive/go-redis-server","commit_stats":null,"previous_names":["dotcloud/go-redis-server","docker/go-redis-server"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/docker-archive/go-redis-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/docker-archive%2Fgo-redis-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/docker-archive%2Fgo-redis-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/docker-archive%2Fgo-redis-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/docker-archive%2Fgo-redis-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/docker-archive","download_url":"https://codeload.github.com/docker-archive/go-redis-server/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/docker-archive%2Fgo-redis-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28418003,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T10:47:48.104Z","status":"ssl_error","status_checked_at":"2026-01-14T10:46:19.031Z","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-14T11:11:17.787Z","updated_at":"2026-01-14T11:11:18.377Z","avatar_url":"https://github.com/docker-archive.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/dotcloud/go-redis-server.png)](https://travis-ci.org/dotcloud/go-redis-server)\n\nRedis server protocol library\n=============================\n\nThere are plenty of good client implementations of the redis protocol, but not many *server* implementations.\n\ngo-redis-server is a helper library for building server software capable of speaking the redis protocol. This could be\nan alternate implementation of redis, a custom proxy to redis, or even a completely different backend capable of\n\"masquerading\" its API as a redis database.\n\n\nSample code\n------------\n\n```go\npackage main\n\nimport (\n\tredis \"github.com/dotcloud/go-redis-server\"\n)\n\ntype MyHandler struct {\n\tvalues map[string][]byte\n}\n\nfunc (h *MyHandler) GET(key string) ([]byte, error) {\n\tv := h.values[key]\n\treturn v, nil\n}\n\nfunc (h *MyHandler) SET(key string, value []byte) error {\n\th.values[key] = value\n\treturn nil\n}\n\nfunc main() {\n\thandler, _ := redis.NewAutoHandler(\u0026MyHandler{values: make(map[string][]byte)})\n\tserver := \u0026redis.Server{Handler: handler, Addr: \":6389\"}\n\tserver.ListenAndServe()\n}\n```\n\nCopyright (c) dotCloud 2013\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdocker-archive%2Fgo-redis-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdocker-archive%2Fgo-redis-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdocker-archive%2Fgo-redis-server/lists"}