Skip to content

Commit 2399946

Browse files
committed
docs: refine README positioning for Rust-native SQL APIs
1 parent 4309702 commit 2399946

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

README.md

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,18 @@
2626
</p>
2727

2828
## Introduction
29-
**KiteSQL** is a lightweight embedded database inspired by **MyRocks** and **SQLite** and completely coded in Rust. It aims to provide a more user-friendly, lightweight, and low-loss RDBMS for Rust programming so that the APP does not rely on other complex components. It can perform complex relational data operations.
29+
**KiteSQL** is a lightweight embedded relational database for Rust, inspired by **MyRocks** and **SQLite** and fully written in Rust. It is designed to work not only as a SQL engine, but also as a Rust-native data API that can be embedded directly into applications without relying on external services or heavyweight infrastructure.
30+
31+
KiteSQL supports direct SQL execution, typed ORM models, schema migration, and builder-style queries, so you can combine relational power with an API surface that feels natural in Rust.
3032

3133
## Key Features
3234
- A lightweight embedded SQL database fully rewritten in Rust
33-
- Higher write speed, more user-friendly API
34-
- All metadata and actual data in KV Storage, and there is no state component (e.g. system table) in the middle
35-
- Supports extending storage for customized workloads
35+
- A Rust-native relational API alongside direct SQL execution
36+
- Typed ORM models with migrations, CRUD helpers, and a lightweight query builder
37+
- Higher write speed with an application-friendly embedding model
38+
- All metadata and actual data in KV storage, with no intermediate stateful service layer
39+
- Extensible storage integration for customized workloads
3640
- Supports most of the SQL 2016 syntax
37-
- Ships a built-in ORM with typed models, migrations, CRUD helpers, and a lightweight query builder
3841
- Ships a WebAssembly build for JavaScript runtimes
3942

4043
#### 👉[check more](docs/features.md)

0 commit comments

Comments
 (0)