{"id":48073770,"url":"https://github.com/aloima/tellydb","last_synced_at":"2026-04-04T14:48:14.236Z","repository":{"id":253865799,"uuid":"839400970","full_name":"aloima/tellydb","owner":"aloima","description":"An in-memory key-value database project.","archived":false,"fork":false,"pushed_at":"2026-03-27T22:51:50.000Z","size":1149,"stargazers_count":26,"open_issues_count":2,"forks_count":5,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-28T05:06:50.075Z","etag":null,"topics":["database","in-memory-database","redis","tellydb"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause-clear","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/aloima.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":"2024-08-07T14:31:02.000Z","updated_at":"2026-03-27T22:51:54.000Z","dependencies_parsed_at":"2024-08-20T03:47:54.134Z","dependency_job_id":"2b4ba40c-c315-4bae-8380-b1c79c6c8eab","html_url":"https://github.com/aloima/tellydb","commit_stats":null,"previous_names":["aloima/tellydb"],"tags_count":13,"template":false,"template_full_name":null,"purl":"pkg:github/aloima/tellydb","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aloima%2Ftellydb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aloima%2Ftellydb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aloima%2Ftellydb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aloima%2Ftellydb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aloima","download_url":"https://codeload.github.com/aloima/tellydb/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aloima%2Ftellydb/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31403634,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"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","in-memory-database","redis","tellydb"],"created_at":"2026-04-04T14:48:13.687Z","updated_at":"2026-04-04T14:48:14.217Z","avatar_url":"https://github.com/aloima.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# tellydb\nAn in-memory key-value database project.\n\n## Features\n+ Follows [RESP2/RESP3](https://redis.io/docs/latest/develop/reference/protocol-spec/) from redis, so all redis clients are compatible\n+ Fully configurable via [.tellyconf](./docs/FILE.md)\n+ Includes command queue system using a thread\n+ Supports integer, double, string, null, boolean, list and hash table types\n+ Provides atomicity when saving to the database file\n+ Provides saving to the database file using a background thread\n+ Provides authorization system with permissions using passwords\n+ Uses Direct I/O for logging and database files\n+ Uses pipelining for combine multiple commands sent by same clients\n+ Supports multiple databases\n+ Data persists on one-file\n\nThe project is documented as follows:\n|                  File                  |            Includes            |\n| :------------------------------------: | :----------------------------: |\n|    [docs/SPECS.md](./docs/SPECS.md)    |  architecture of the project   |\n|     [docs/FILE.md](./docs/FILE.md)     |   provided files by tellydb    |\n| [docs/COMMANDS.md](./docs/COMMANDS.md) | commands and their information |\n|     [docs/AUTH.md](./docs/AUTH.md)     |      authorization logic       |\n\n## Installation\n\n### Install via script\n\u003e [!IMPORTANT]\n\u003e It downloads dependencies and makes Docker operations, so it needs to be used via `sudo`.\n\n```bash\ncurl -o- https://raw.githubusercontent.com/aloima/tellydb/master/install.sh | bash\n```\n\n\n### Install from GitHub Releases:\n* Download the [latest release file](https://github.com/aloima/tellydb/releases/latest)\n* Start the server using `./telly`\n\n### Compile on Local Machine:\n+ Clone the repository\n+ Install `OpenSSL` library and its development headers\n+ Install `jemalloc` library and its development headers\n+ Install `gmp` library and its development headers\n+ Install `cmake` to generate compile files\n+ Install `gperf` to generate perfect hash method\n+ Create build directory using `mkdir build` and enter `cd build`\n+ Generate compilation files using `cmake ..`\n  - Compile inside the directory using `make telly`, then start the server using `./telly`\n  - Install your local machine using `sudo make install`, then start the server using `telly`\n\n### Install via Docker:\nPull docker image:\n```sh\ndocker pull aloima/tellydb\n```\n\nRun docker container to start the server:\n```sh\ndocker run -d -p 6379:6379 --name telly aloima/tellydb\n```\n\nTo get information about cli commands, use `./telly help`.\n\n## License\nLicensed under [BSD-3 Clause Clear License](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faloima%2Ftellydb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faloima%2Ftellydb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faloima%2Ftellydb/lists"}