{"id":22466292,"url":"https://github.com/hummingbird-project/hummingbird-redis","last_synced_at":"2025-08-02T07:30:51.891Z","repository":{"id":52553427,"uuid":"333051529","full_name":"hummingbird-project/hummingbird-redis","owner":"hummingbird-project","description":"Hummingbird integration with Redis driver RediStack","archived":false,"fork":false,"pushed_at":"2025-06-23T14:40:28.000Z","size":126,"stargazers_count":13,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-24T12:08:43.366Z","etag":null,"topics":["hummingbird","redis","server","swift"],"latest_commit_sha":null,"homepage":"","language":"Swift","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/hummingbird-project.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":"adam-fowler"}},"created_at":"2021-01-26T10:38:55.000Z","updated_at":"2025-07-19T19:19:27.000Z","dependencies_parsed_at":"2024-03-14T11:50:57.861Z","dependency_job_id":"a90ae771-d7a6-4f34-a1a0-32258a5a66c0","html_url":"https://github.com/hummingbird-project/hummingbird-redis","commit_stats":{"total_commits":45,"total_committers":1,"mean_commits":45.0,"dds":0.0,"last_synced_commit":"cdf7547ca5ef316fcff46681a8b9d5d2da3abac2"},"previous_names":[],"tags_count":25,"template":false,"template_full_name":null,"purl":"pkg:github/hummingbird-project/hummingbird-redis","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummingbird-project%2Fhummingbird-redis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummingbird-project%2Fhummingbird-redis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummingbird-project%2Fhummingbird-redis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummingbird-project%2Fhummingbird-redis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hummingbird-project","download_url":"https://codeload.github.com/hummingbird-project/hummingbird-redis/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hummingbird-project%2Fhummingbird-redis/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268348609,"owners_count":24236297,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-02T02:00:12.353Z","response_time":74,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["hummingbird","redis","server","swift"],"created_at":"2024-12-06T10:11:30.824Z","updated_at":"2025-08-02T07:30:51.594Z","avatar_url":"https://github.com/hummingbird-project.png","language":"Swift","funding_links":["https://github.com/sponsors/adam-fowler"],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\u003cpicture\u003e\n  \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"https://github.com/hummingbird-project/hummingbird/assets/9382567/48de534f-8301-44bd-b117-dfb614909efd\"\u003e\n  \u003cimg src=\"https://github.com/hummingbird-project/hummingbird/assets/9382567/e371ead8-7ca1-43e3-8077-61d8b5eab879\"\u003e\n\u003c/picture\u003e\n\u003c/p\u003e  \n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://swift.org\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/swift-5.9-brightgreen.svg\"/\u003e\n\u003c/a\u003e\n\u003ca href=\"https://github.com/hummingbird-project/hummingbird-redis/actions?query=workflow%3ACI\"\u003e\n  \u003cimg src=\"https://github.com/hummingbird-project/hummingbird-redis/actions/workflows/ci.yml/badge.svg?branch=main\"/\u003e\n\u003c/a\u003e\n\u003ca href=\"https://discord.gg/7ME3nZ7mP2\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/chat-discord-brightgreen.svg\"/\u003e\n\u003c/a\u003e\n\u003c/p\u003e\n\n# Hummingbird Redis Interface\n\nRedis is an open source, in-memory data structure store, used as a database, cache, and message broker.\n\nThis is the Hummingbird interface to [RediStack library](https://gitlab.com/mordil/RediStack.git) a Swift driver for Redis.\n\n## Usage\n\n```swift\nimport Hummingbird\nimport HummingbirdRedis\n\nlet redis = try RedisConnectionPoolService(\n    .init(hostname: redisHostname, port: 6379),\n    logger: Logger(label: \"Redis\")\n)\n\n// create router and add a single GET /redis route\nlet router = Router()\nrouter.get(\"redis\") { request, _ -\u003e String in\n    let info = try await redis.send(command: \"INFO\").get()\n    return String(describing: info)\n}\n// create application using router\nvar app = Application(\n    router: router,\n    configuration: .init(address: .hostname(\"127.0.0.1\", port: 8080))\n)\napp.addServices(redis)\n// run hummingbird application\ntry await app.runService()\n```\n\n## Documentation\n\nReference documentation for HummingbirdRedis can be found [here](https://docs.hummingbird.codes/2.0/documentation/hummingbirdredis)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhummingbird-project%2Fhummingbird-redis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhummingbird-project%2Fhummingbird-redis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhummingbird-project%2Fhummingbird-redis/lists"}