{"id":36585942,"url":"https://github.com/whilein/wredis","last_synced_at":"2026-01-12T08:03:02.964Z","repository":{"id":57735196,"uuid":"457325668","full_name":"whilein/wredis","owner":"whilein","description":"Lightweight and fast redis client for java","archived":false,"fork":false,"pushed_at":"2022-03-05T12:06:56.000Z","size":215,"stargazers_count":6,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-04-23T02:26:46.516Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","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/whilein.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":"2022-02-09T11:14:59.000Z","updated_at":"2024-04-23T02:26:46.517Z","dependencies_parsed_at":"2022-08-24T11:20:42.608Z","dependency_job_id":null,"html_url":"https://github.com/whilein/wredis","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/whilein/wredis","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whilein%2Fwredis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whilein%2Fwredis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whilein%2Fwredis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whilein%2Fwredis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/whilein","download_url":"https://codeload.github.com/whilein/wredis/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/whilein%2Fwredis/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28336986,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T06:09:07.588Z","status":"ssl_error","status_checked_at":"2026-01-12T06:05:18.301Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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-12T08:03:02.213Z","updated_at":"2026-01-12T08:03:02.959Z","avatar_url":"https://github.com/whilein.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- @formatter:off  --\u003e\n\n# wredis\n\n\u003cdiv align=\"center\"\u003e\n  \u003ca href=\"https://github.com/whilein/wredis/blob/master/LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/license/whilein/wredis\"\u003e\n  \u003c/a\u003e\n\n  \u003ca href=\"https://discord.gg/ANEHruraCc\"\u003e\n    \u003cimg src=\"https://img.shields.io/discord/819859288049844224?logo=discord\"\u003e\n  \u003c/a\u003e\n\n  \u003ca href=\"https://github.com/whilein/wredis/issues\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/issues/whilein/wredis\"\u003e\n  \u003c/a\u003e\n\n  \u003ca href=\"https://github.com/whilein/wredis/pulls\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/issues-pr/whilein/wredis\"\u003e\n  \u003c/a\u003e\n\n  \u003ca href=\"https://search.maven.org/artifact/io.github.whilein/wredis\"\u003e\n    \u003cimg src=\"https://img.shields.io/maven-central/v/io.github.whilein/wredis\"\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n## Использование\n\n```java\npublic class Main {\n    public static void main(final String[] args) {\n        Redis redis = new Redis(new Redis.Config.Builder(new InetSocketAddress(host, port))\n                .auth(username, password)\n                .connectTimeout(1, TimeUnit.SECONDS)\n                .build());\n\n        redis.command(\"PING\").flushAndRead();\n        \n        boolean pong = \"PONG\".equals(redis.nextString());\n    }\n}\n```\n\n## Добавить в свой проект\n\n\u003cdiv\u003e\n  \u003ca href=\"https://search.maven.org/artifact/io.github.whilein/wredis\"\u003e\n    \u003cimg src=\"https://img.shields.io/maven-central/v/io.github.whilein/wredis\"\u003e\n  \u003c/a\u003e\n\u003c/div\u003e\n\n### Maven\n\n```xml\n\n\u003cdependencies\u003e\n    \u003cdependency\u003e\n        \u003cgroupId\u003eio.github.whilein\u003c/groupId\u003e\n        \u003cartifactId\u003ewredis\u003c/artifactId\u003e\n        \u003cversion\u003e0.1.12\u003c/version\u003e\n    \u003c/dependency\u003e\n\u003c/dependencies\u003e\n```\n\n### Gradle\n\n```groovy\ndependencies {\n    implementation 'io.github.whilein:wredis:0.1.12'\n}\n```\n\u003c!-- @formatter:on  --\u003e","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhilein%2Fwredis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwhilein%2Fwredis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwhilein%2Fwredis/lists"}