{"id":19430703,"url":"https://github.com/jmrashed/install-redis-on-windows","last_synced_at":"2026-03-19T09:51:17.906Z","repository":{"id":218169573,"uuid":"745774491","full_name":"jmrashed/Install-Redis-on-Windows","owner":"jmrashed","description":"Install Redis on Windows","archived":false,"fork":false,"pushed_at":"2024-01-20T05:23:32.000Z","size":11792,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-27T07:56:23.039Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jmrashed.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2024-01-20T05:14:08.000Z","updated_at":"2024-01-26T17:31:36.000Z","dependencies_parsed_at":"2024-01-20T08:25:08.262Z","dependency_job_id":"1a4880af-ebd7-4100-b5c3-7bb43e01929b","html_url":"https://github.com/jmrashed/Install-Redis-on-Windows","commit_stats":null,"previous_names":["jmrashed/install-redis-on-windows","mrzstack/install-redis-on-windows"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jmrashed/Install-Redis-on-Windows","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmrashed%2FInstall-Redis-on-Windows","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmrashed%2FInstall-Redis-on-Windows/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmrashed%2FInstall-Redis-on-Windows/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmrashed%2FInstall-Redis-on-Windows/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jmrashed","download_url":"https://codeload.github.com/jmrashed/Install-Redis-on-Windows/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmrashed%2FInstall-Redis-on-Windows/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30071687,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-04T03:25:38.285Z","status":"ssl_error","status_checked_at":"2026-03-04T03:25:05.086Z","response_time":59,"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":[],"created_at":"2024-11-10T14:26:14.547Z","updated_at":"2026-03-04T04:32:06.908Z","avatar_url":"https://github.com/jmrashed.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Install-Redis-on-Windows\nDoenload `Redis-x64-3.0.504.msi` and install for redis server\n\n\n# How to use \n\n# Redis-cli Command Examples\n\n## Connection\n- `redis-cli` - Connect to the Redis server.\n- `AUTH password` - Authenticate to the server.\n- `QUIT` - Close the connection.\n\n## Key Commands\n- `SET key value` - Set the value of a key.\n  Example: `SET mykey \"Hello\"`\n\n- `GET key` - Get the value of a key.\n  Example: `GET mykey`\n\n- `DEL key [key ...]` - Delete one or more keys.\n  Example: `DEL mykey`\n\n- `EXISTS key` - Check if a key exists.\n  Example: `EXISTS mykey`\n\n- `KEYS pattern` - Find all keys matching the given pattern.\n  Example: `KEYS my*`\n\n- `TTL key` - Get the time to live for a key.\n  Example: `TTL mykey`\n\n## String Commands\n- `APPEND key value` - Append a value to a key.\n  Example: `APPEND mykey \" World\"`\n\n- `STRLEN key` - Get the length of the value stored in a key.\n  Example: `STRLEN mykey`\n\n## List Commands\n- `LPUSH key value [value ...]` - Prepend one or multiple values to a list.\n  Example: `LPUSH mylist \"value1\" \"value2\"`\n\n- `RPUSH key value [value ...]` - Append one or multiple values to a list.\n  Example: `RPUSH mylist \"value3\" \"value4\"`\n\n- `LPOP key` - Remove and get the first element in a list.\n  Example: `LPOP mylist`\n\n- `RPOP key` - Remove and get the last element in a list.\n  Example: `RPOP mylist`\n\n- `LRANGE key start stop` - Get a range of elements from a list.\n  Example: `LRANGE mylist 0 -1`\n\n## Set Commands\n- `SADD key member [member ...]` - Add one or more members to a set.\n  Example: `SADD myset \"member1\" \"member2\"`\n\n- `SMEMBERS key` - Get all members of a set.\n  Example: `SMEMBERS myset`\n\n- `SISMEMBER key member` - Determine if a given value is a member of a set.\n  Example: `SISMEMBER myset \"member1\"`\n\n- `SREM key member [member ...]` - Remove one or more members from a set.\n  Example: `SREM myset \"member1\"`\n\n## Hash Commands\n- `HSET key field value` - Set the value of a field in a hash.\n  Example: `HSET myhash field1 \"value1\"`\n\n- `HGET key field` - Get the value of a field from a hash.\n  Example: `HGET myhash field1`\n\n- `HGETALL key` - Get all fields and values from a hash.\n  Example: `HGETALL myhash`\n\n- `HDEL key field [field ...]` - Delete one or more fields from a hash.\n  Example: `HDEL myhash field1`\n\n## Pub/Sub Commands\n- `SUBSCRIBE channel [channel ...]` - Subscribe to channels.\n  Example: `SUBSCRIBE mychannel`\n\n- `UNSUBSCRIBE [channel ...]` - Unsubscribe from channels.\n  Example: `UNSUBSCRIBE mychannel`\n\n- `PUBLISH channel message` - Publish a message to a channel.\n  Example: `PUBLISH mychannel \"Hello subscribers!\"`\n\n## Server Commands\n- `INFO` - Get information and statistics about the server.\n  Example: `INFO`\n\n- `PING` - Ping the server.\n  Example: `PING`\n\n- `FLUSHDB` - Remove all keys from the current database.\n  Example: `FLUSHDB`\n\n# End of Redis-cli Command Examples\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmrashed%2Finstall-redis-on-windows","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjmrashed%2Finstall-redis-on-windows","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmrashed%2Finstall-redis-on-windows/lists"}