{"id":18565666,"url":"https://github.com/hypothermic/enlightenment","last_synced_at":"2026-04-12T22:14:13.786Z","repository":{"id":105190654,"uuid":"286139176","full_name":"hypothermic/enlightenment","owner":"hypothermic","description":"Extensible database management software. Usable as library, from CLI, as a remote service, and more!","archived":false,"fork":false,"pushed_at":"2020-09-26T17:54:59.000Z","size":293,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-30T09:31:54.683Z","etag":null,"topics":["database","database-management","dbms","sql"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hypothermic.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog.txt","contributing":null,"funding":null,"license":"COPYING.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS.md","dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2020-08-09T00:14:55.000Z","updated_at":"2020-09-30T19:25:40.000Z","dependencies_parsed_at":null,"dependency_job_id":"a3503d68-860e-471b-913c-466ef9c265f4","html_url":"https://github.com/hypothermic/enlightenment","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hypothermic/enlightenment","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypothermic%2Fenlightenment","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypothermic%2Fenlightenment/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypothermic%2Fenlightenment/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypothermic%2Fenlightenment/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hypothermic","download_url":"https://codeload.github.com/hypothermic/enlightenment/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hypothermic%2Fenlightenment/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273105960,"owners_count":25046950,"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","status":"online","status_checked_at":"2025-09-01T02:00:09.058Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","database-management","dbms","sql"],"created_at":"2024-11-06T22:19:40.744Z","updated_at":"2025-10-17T11:41:31.164Z","avatar_url":"https://github.com/hypothermic.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"Introduction\n===============\n\nEnlightenment is an extensible database management software (DBMS).\n\nIt stores data in Tables where the Columns represent the data fields and the Rows represent data entries.\n\nYou can use Enlightenment as:\n- a library which handles data storage for your application\n- a database server which is accessible from CLI\n- a database server which is remotely accessible (via WebSocket, MySQL client, etc.)\n\nProject Structure\n===============\n\nIt is divided into the following modules:\n\n| Module | Description |\n| ------ | ----------- |\n| enl-server-cli | Command-line tool to start a local server. |\n| enl-server | Library to use when developing your application. |\n| enl-api | Library to use when developing custom Engines or Drivers. |\n\nMore info about these modules can be found in [Project Structure](doc/images/enl-global-structure-dark.png) [(L)](doc/images/enl-global-structure-light.png) and [CMake Structure](doc/images/cmake-structure-dark.png) [(L)](doc/images/cmake-structure-light.png)\n\nEngine Comparison\n===============\n\nThe following table lists all available engines with their worst possible CRUD-L complexities:\n\n| Name | Short Description      | Create | Read | Update | Delete | List |\n| ---- | ---------------------- | ------ | ---- | ------ | ------ | ---- |\n| IMH  | In-Memory (RAM) engine | O(1)   | O(1) | ~      | ~      | O(n) |\n\nLicense\n===============\n\nCopyright (c) 2020 Hypothermic IT\n\nSee COPYING file for license information.\n\nInstallation\n===============\n\nSee build and installation instructions given in the [INSTALL](/INSTALL.md) file.\n\nDocumentation\n===============\n\nSee the software manual for details on the software including a demonstration\nof how to apply the software tools provided by this package.\n\nRoadmap\n===============\n\n1. [x] Main library\n2. [ ] CLI\n3. [ ] Engines\n    - [ ] In-memory engine\n    - [ ] General purpose disk storage engine\n    - [ ] Hybrid engine\n4. [ ] Drivers\n    - [ ] ENL minimalistic driver (via plain socket and/or WebSocket)\n    - [ ] MySQL/MariaDB compatible\n    - [ ] Mongo compatible driver (although ours is relational, it'll work probably)\n5. [ ] Library usage examples\n    - [ ] Low-level example with manual table and engine creation\n    - [ ] High-level example using EServer HOC described in #6\n6. [ ] Easier integration for library users through some sort of higher order control structure (EServer?)\n\nPackage Content\n===============\n\nPath                    | Content description\n----------------------- | ----------------------------------------------------------\n[BasisProject.cmake][1] | Meta-data used for the build configuration.\n[CMakeLists.txt]    [2] | Root CMake configuration file.\n[config/]           [3] | Package configuration files.\n[data/]             [4] | Data files required by this software.\n[doc/]              [5] | Documentation source files.\n[example/]          [6] | Example files used for demonstration.\n[include/]          [7] | Public header files.\n[src/]              [8] | Source code files.\n[test/]             [9] | Regression and unit tests.\n\n\n\n\n\n\n\u003c!-- --------------------------------------------------------------------------------- --\u003e\n\n\u003c!-- Links to GitHub, see the local directory if you have downloaded the files already --\u003e\n[1]: /BasisProject.cmake\n[2]: /CMakeLists.txt\n[3]: /config\n[4]: /data\n[5]: /doc\n[6]: /example\n[7]: /include\n[8]: /src\n[9]: /test\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhypothermic%2Fenlightenment","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhypothermic%2Fenlightenment","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhypothermic%2Fenlightenment/lists"}