{"id":19552210,"url":"https://github.com/simonewebdesign/red","last_synced_at":"2026-05-03T11:37:03.224Z","repository":{"id":147912760,"uuid":"264976683","full_name":"simonewebdesign/red","owner":"simonewebdesign","description":"🔴 Fast key-value storage inspired by Redis","archived":false,"fork":false,"pushed_at":"2025-06-03T09:14:13.000Z","size":835,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-29T02:47:32.602Z","etag":null,"topics":["database","key-value","redis","storage"],"latest_commit_sha":null,"homepage":"https://simonewebdesign.github.io/red/red/struct.State.html","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simonewebdesign.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-05-18T15:11:03.000Z","updated_at":"2025-06-03T09:14:14.000Z","dependencies_parsed_at":"2025-10-29T02:41:58.838Z","dependency_job_id":"f86a6746-db0b-4e6a-9953-50af229ac376","html_url":"https://github.com/simonewebdesign/red","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/simonewebdesign/red","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonewebdesign%2Fred","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonewebdesign%2Fred/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonewebdesign%2Fred/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonewebdesign%2Fred/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simonewebdesign","download_url":"https://codeload.github.com/simonewebdesign/red/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simonewebdesign%2Fred/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32567760,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T06:36:36.687Z","status":"ssl_error","status_checked_at":"2026-05-03T06:36:09.306Z","response_time":103,"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":["database","key-value","redis","storage"],"created_at":"2024-11-11T04:17:17.274Z","updated_at":"2026-05-03T11:37:03.218Z","avatar_url":"https://github.com/simonewebdesign.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🔴 Red [![Build Status](https://travis-ci.org/simonewebdesign/red.svg?branch=master)](https://travis-ci.org/simonewebdesign/red)\n\n\u003e Fast, reliable key-value storage. Inspired by Redis, built with Rust.\n\n**Red** has a similar interface to Redis. It has two executables:\n\n- `red` - an interactive shell (like `redis-cli`)\n- `red-server` - a TCP server (like `redis-server`)\n\nThe shell is a REPL: it expects you to enter one command at a time.\n\nThe server, on the other hand, can handle multiple connections and multiple commands per connection. Commands must be separated by a newline and will be processed in a single step, as soon as EOF is reached. Replies are queued and will also be sent together.\n\n## Commands\n\nFull documentation can be found [here](https://simonewebdesign.github.io/red/red/struct.State.html). List of supported commands:\n\n* [`GET`](#get-key)\n* [`SADD`](#sadd-member)\n* [`SET`](#set-key-value)\n* [`SMEMBERS`](#smembers)\n* [`SREM`](#srem-member)\n\n### GET key\n\nGet the value of key. If the key does not exist the special value `nil` is returned.\n\n### SADD member\n\nAdd the member to the set. If the member is already in the set, it will be ignored.\n\n### SET key value\n\nSet key to hold the string `value`. If key already holds a value, it is overwritten.\n\n### SMEMBERS\n\nReturns all the members of the set.\n\n### SREM member\n\nRemove the specified member from the set. If the member is not in the set, it will be ignored.\n\n\n## Installation\n\nTODO: add crate\n\n### Compile from source\n\nClone the repo, then compile the project with:\n\n    rustc src/main.rs -o red  # Compile the CLI\n    rustc src/server.rs -o red-server  # Compile the TCP server\n\nAlternatively, you can start an interactive shell with:\n\n    cargo run\n\nGenerate docs with:\n\n    cargo doc\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimonewebdesign%2Fred","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimonewebdesign%2Fred","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimonewebdesign%2Fred/lists"}