{"id":13672447,"url":"https://github.com/mambisi/escanor","last_synced_at":"2025-04-27T22:32:16.022Z","repository":{"id":104219586,"uuid":"254763488","full_name":"mambisi/escanor","owner":"mambisi","description":"High performance key value database with useful json document indexing and manipulations. ","archived":false,"fork":false,"pushed_at":"2020-12-05T21:12:46.000Z","size":1018,"stargazers_count":51,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-11T10:42:30.370Z","etag":null,"topics":["database","key-value","memory-database","redis","rust","rust-lang"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mambisi.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}},"created_at":"2020-04-11T00:32:48.000Z","updated_at":"2024-09-21T10:30:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"3a350bba-b5f3-4e4b-b563-41589b29b1d0","html_url":"https://github.com/mambisi/escanor","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mambisi%2Fescanor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mambisi%2Fescanor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mambisi%2Fescanor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mambisi%2Fescanor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mambisi","download_url":"https://codeload.github.com/mambisi/escanor/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251219601,"owners_count":21554444,"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","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","memory-database","redis","rust","rust-lang"],"created_at":"2024-08-02T09:01:35.891Z","updated_at":"2025-04-27T22:32:15.373Z","avatar_url":"https://github.com/mambisi.png","language":"Rust","funding_links":[],"categories":["Rust"],"sub_categories":[],"readme":"![logo](https://raw.githubusercontent.com/mambisi/escanor/master/static/logo.png)\n\n## Welcome to the Escanor\n\nEscanor is a high performance database with [sled](https://github.com/spacejam/sled) as the persistence layer and implement the [redis protocol](https://redis.io/topics/protocol) with useful additions for json data manipulations. This is a side project with the vision of making it into a major project any contributors are welcome.\n\n## Features\n\n- High Performance\n\n- Non Blocking Key-Value\n\n- Asynchronous Server \n\n- Support for Json Document Manipulations\n\n- Works with Redis Clients and Libraries\n\n- Client Cli included.\n\n## [Download](https://github.com/mambisi/escanor/releases)\nDownload the latest release from the [release page](https://github.com/mambisi/escanor/releases), binaries are available for Windows, Mac and Linux.\n\n## [Install](https://github.com/mambisi/escanor/wiki/Installation)\nInstallation instructions are available in the [wiki page](https://github.com/mambisi/escanor/wiki/Installation)\n\n## [Commands](https://github.com/mambisi/escanor/wiki)\nSupported commands:\n``randomkey``,``info``,``dbsize``,``bgsave``,``auth``,``lastsave``,``persist``,``expire``,``expireat``,``set``,``get``,``getset``,``del``,``get``,``ttl``,``geoadd``,``geodel``,``georem``,``georadius``,``georadiusbymember``\n ,``geohash``,``geojson``,``jsetr``,``jset``,``jget``,``jpath``,``jmerge``,``jincrby``\n checkout the wiki page on how to use these commands\n[WIKI PAGE](https://github.com/mambisi/escanor/wiki)\n\n## Run\n\n```shell script\ngit clone https://github.com/mambisi/escanor.git\n```\n```shell script\ncd escanor\n```\n```shell script\ncargo run --bin escanor-server\n```\n```shell script\ncargo run --bin escanor-cli\n```\n\n## 0.1.5 Features\n\nNew cli with pretty formatted json and colored json output\n\n![logo](https://raw.githubusercontent.com/mambisi/escanor/master/static/escanor-cli.png)\n\n\n#### New Commands\n- RANDOMKEY\n- INFO\n- DBSIZE\n- AUTH\n- LASTSAVE\n- PERSIST\n- EXPIRE\n- EXPIREAT\n- GETSET\n- TTL\n- JINCRBY\n- JSETR\n\n#### Changes\n\nJSETR now set raw json \n```bash\nJSETR user.0 `{\"name\" : \"escanor\"}`\n```\nJSET is used for builder style json creation making it easier to create json form the command line\n\nExample :\n```json\n{\n\"name\" : \"escanor\",\n\"todos\" : [\n    { \"item\" : \"Wash\",\n       \"completed\" : false\n    },\n    { \"item\" : \"Code\",\n       \"completed\" : false\n    }\n   ]\n}\n```\nCan dynamical be built with JSET\n```bash\nJSET user name \"escanor\" todos.+.item \"Wash\" todos.\u003e.completed false todos.+.item \"Code\" todos.\u003e.completed false\n```\nJSET can be used to change json even inner array\n```bash\nJSET user todos.1.completed true\n```\n\nJGET \n```bash\nJGET user\n```\noutputs \n```json\n{\n\"name\" : \"escanor\",\n\"todos\" : [\n    { \"item\" : \"Wash\",\n       \"completed\" : false\n    },\n    { \"item\" : \"Code\",\n       \"completed\" : true\n    }\n   ]\n}\n```\n\nJGET can be used to select specific part of a json object\n```bash\nJGET user todos\n```\noutputs \n```json\n[\n  { \"item\" : \"Wash\",\n       \"completed\" : false\n   },\n   { \"item\" : \"Code\",\n       \"completed\" : true\n   }\n]\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmambisi%2Fescanor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmambisi%2Fescanor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmambisi%2Fescanor/lists"}