{"id":37206014,"url":"https://github.com/nussjustin/resp3","last_synced_at":"2026-01-14T23:43:42.322Z","repository":{"id":144210486,"uuid":"258858332","full_name":"nussjustin/resp3","owner":"nussjustin","description":"Fast Redis protocol parser package for Go.","archived":false,"fork":false,"pushed_at":"2025-06-01T12:27:56.000Z","size":165,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-01T21:27:08.500Z","etag":null,"topics":["redis","redis-client","redis-clients","resp3","resp3-client"],"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/nussjustin.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}},"created_at":"2020-04-25T19:36:37.000Z","updated_at":"2025-06-01T12:26:44.000Z","dependencies_parsed_at":null,"dependency_job_id":"8fa721b0-f4f1-46f5-bb5e-871c630dcb50","html_url":"https://github.com/nussjustin/resp3","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/nussjustin/resp3","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nussjustin%2Fresp3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nussjustin%2Fresp3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nussjustin%2Fresp3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nussjustin%2Fresp3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nussjustin","download_url":"https://codeload.github.com/nussjustin/resp3/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nussjustin%2Fresp3/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28439529,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T22:37:52.437Z","status":"ssl_error","status_checked_at":"2026-01-14T22:37:31.496Z","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":["redis","redis-client","redis-clients","resp3","resp3-client"],"created_at":"2026-01-14T23:43:41.647Z","updated_at":"2026-01-14T23:43:42.309Z","avatar_url":"https://github.com/nussjustin.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# resp3\n\u003e Fast RESP 3 protocol reader and writer for Go.\n\n[![GoDoc](https://godoc.org/github.com/nussjustin/resp3?status.svg)](https://godoc.org/github.com/nussjustin/resp3)\n[![Lint](https://github.com/nussjustin/resp3/workflows/Lint/badge.svg)](https://github.com/nussjustin/resp3/actions?query=workflow%3ALint)\n[![Test](https://github.com/nussjustin/resp3/workflows/Test/badge.svg)](https://github.com/nussjustin/resp3/actions?query=workflow%3ATest)\n[![Go Report Card](https://goreportcard.com/badge/github.com/nussjustin/resp3)](https://goreportcard.com/report/github.com/nussjustin/resp3)\n\nThis is a small package that provides fast reader and writer types for version 3 of the\n[REdis Serialization Protocol](https://redis.io/topics/protocol) (short RESP).\n\n## Installation\n\n```sh\ngo get -u github.com/nussjustin/resp3\n```\n\n## Testing\n\nTo run all unit tests, just call `go test`:\n\n```sh\ngo test\n```\n\nIf you want to run integration tests you need to pass the `integration` tag to `go test`:\n\n```sh\ngo test -tags integration\n```\n\nBy default integration tests will try to connect to a Redis instance on `127.0.0.1:6379`.\n\nIf your instance has a non-default config, you can use the `REDIS_HOST` environment variable, to override the address:\n\n```sh\nREDIS_HOST=127.0.0.1:6380   go test -tags integration # different port\nREDIS_HOST=192.168.0.1:6380 go test -tags integration # different host\nREDIS_HOST=/tmp/redis.sock  go test -tags integration # unix socket\n```\n\nNote: If you want to test using a unix socket, make sure that the path to the socket starts with a slash,\nfor example `/tmp/redis.sock`.\n\nDebug logging for integration tests can be enabled by passing the `-debug` flag to `go test`.\n\n## Meta\n\nJustin Nuß – [@nussjustin](https://twitter.com/nussjustin)\n\nDistributed under the MIT license. See ``LICENSE`` for more information.\n\n## Contributing\n\n1. Fork it (\u003chttps://github.com/nussjustin/resp3/fork\u003e)\n2. Create your feature branch (`git checkout -b feature/fooBar`)\n3. Commit your changes (`git commit -am 'Add some fooBar'`)\n4. Push to the branch (`git push origin feature/fooBar`)\n5. Create a new Pull Request\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnussjustin%2Fresp3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnussjustin%2Fresp3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnussjustin%2Fresp3/lists"}