| Crates.io | enso |
| lib.rs | enso |
| version | 0.1.1 |
| created_at | 2026-01-07 16:39:47.066256+00 |
| updated_at | 2026-01-07 20:23:39.213233+00 |
| description | Enso is an experimental database engine built to explore storage engines, query execution, and networking. |
| homepage | https://github.com/aether-flux/enso |
| repository | https://github.com/aether-flux/enso |
| max_upload_size | |
| id | 2028629 |
| size | 103,120 |
EnsoDB is a lightweight, embedded-first database written in Rust, designed for learning, hacking, and building developer-friendly systems from the ground up.
It focuses on:
⚠️ EnsoDB is experimental and currently in early development.
curl -fsSL https://raw.githubusercontent.com/aether-flux/ensodb/main/install/linux/install.sh | sh
Powershell:
iwr -useb https://raw.githubusercontent.com/aether-flux/ensodb/main/install/windows/install.bat | iex
This starts:
127.0.0.1:5432)[test_db] > INSERT INTO users VALUES(1, "user_name");
1 row(s) affected
[test_db] > SELECT * FROM users;
| id | name |
|----|------|
| 1 | user_name |
EnsoDB exposes a simple text-based TCP protocol.
This allows external clients (CLI tools, SDKs) to connect.
EnsoDB exists to:
MIT