{"id":33931130,"url":"https://github.com/kruseio/rapiddb","last_synced_at":"2026-01-24T21:18:28.783Z","repository":{"id":37237456,"uuid":"505462561","full_name":"kruseio/rapiddb","owner":"kruseio","description":"A reasonably fast configurable embedded key-value sensor database","archived":false,"fork":false,"pushed_at":"2024-11-14T20:01:03.000Z","size":409,"stargazers_count":16,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-13T15:20:10.310Z","etag":null,"topics":["database","embedded-database","embedded-kv","embedded-webserver","high-performance","key-value","kv","mmav","persistence","rust","sensor-database"],"latest_commit_sha":null,"homepage":"https://crates.io/crates/rapiddb","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/kruseio.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"2022-06-20T13:54:21.000Z","updated_at":"2025-12-26T18:07:55.000Z","dependencies_parsed_at":"2025-07-23T07:19:41.235Z","dependency_job_id":null,"html_url":"https://github.com/kruseio/rapiddb","commit_stats":{"total_commits":110,"total_committers":1,"mean_commits":110.0,"dds":0.0,"last_synced_commit":"12449ea1f5a986be73eb722e2fadf353085a7a63"},"previous_names":["kruseio/rapiddb","kruserr/rapiddb"],"tags_count":33,"template":false,"template_full_name":null,"purl":"pkg:github/kruseio/rapiddb","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kruseio%2Frapiddb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kruseio%2Frapiddb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kruseio%2Frapiddb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kruseio%2Frapiddb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kruseio","download_url":"https://codeload.github.com/kruseio/rapiddb/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kruseio%2Frapiddb/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28737090,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T19:23:36.361Z","status":"ssl_error","status_checked_at":"2026-01-24T19:23:28.966Z","response_time":89,"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","embedded-database","embedded-kv","embedded-webserver","high-performance","key-value","kv","mmav","persistence","rust","sensor-database"],"created_at":"2025-12-12T12:29:46.029Z","updated_at":"2026-01-24T21:18:28.772Z","avatar_url":"https://github.com/kruseio.png","language":"Rust","readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/kruserr/rapiddb\" target=\"_blank\"\u003e\n    \u003cimg width=\"300\" src=\"https://raw.githubusercontent.com/kruserr/rapiddb/main/assets/logo/logo.svg\"\u003e\n  \u003c/a\u003e\n  \u003cbr/\u003e\n  \u003cbr/\u003e\n  \u003ca href=\"https://crates.io/crates/rapiddb\" target=\"_blank\"\u003e\n    \u003cimg src=\"https://img.shields.io/crates/v/rapiddb?logo=Rust\u0026logoColor=white\"/\u003e \n  \u003c/a\u003e\n  \u003ca href=\"https://hub.docker.com/r/kruserr/rapiddb\" target=\"_blank\"\u003e\n    \u003cimg src=\"https://img.shields.io/docker/v/kruserr/rapiddb?sort=semver\u0026logo=docker\u0026logoColor=white\"/\u003e \n  \u003c/a\u003e\n  \u003ca href=\"https://codecov.io/gh/kruserr/rapiddb\" target=\"_blank\"\u003e \n    \u003cimg src=\"https://img.shields.io/codecov/c/gh/kruserr/rapiddb?logo=Codecov\u0026logoColor=white\"/\u003e \n  \u003c/a\u003e\n\u003c/p\u003e\n\n# RapidDB\nA reasonably fast configurable embedded key-value sensor database\n\n## Features\n- Lightweight embedded database\n- Simple key-value database interface\n- Simple and flexible optional embedded REST API\n- Memory first with on-disk persistence\n- Memory Mapped Append-only Vector backing storage\n- Bring your own database or API implementation\n- Store sensor data inside a sensor database\n\n## Getting Started\n### Docker\nRun database with docker\n```bash\ndocker run -dit --rm -p 3030:3030 --name rapiddb kruserr/rapiddb:0.1\n```\n\n[Further install options](docs/install.md)\n\n### Use the database with curl\nWrite to database with curl\n```bash\ncurl -X POST localhost:3030/api/v0/test-0 -d '{\"temp\":4.00}'\n```\n\nRead from database with curl\n```bash\ncurl localhost:3030/api/v0/test-0/latest\n```\n\nExplore the API with curl\n```bash\ncurl localhost:3030/api/v0\ncurl localhost:3030/api/v0/sensors\ncurl localhost:3030/api/v0/test-0\n```\n\n### Explore and customize the database\nThe database is highly customizable, if you use the database inside\nyour cargo project. You can interact with the `db` object, and\nexplore the `IDatabase` interface. You can also use `warp::Filter`\nto extend the API. You can also implement the `IDatabase` interface\nyourself, for your own database. Explore the docs to learn more, or\nlook at the examples.\n\n## Documentation\nVisit the [Documentation](https://docs.rs/rapiddb-web).\n\n## Examples\nVisit the [Examples](https://github.com/kruserr/rapiddb/tree/main/examples).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkruseio%2Frapiddb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkruseio%2Frapiddb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkruseio%2Frapiddb/lists"}