This project is a hobby implementation of a SQLite-like database engine written in Rust.# It is not intended for production use and serves primarily as a learning exercise to understand how databases work under the hood. The goal is to gain deep insights into database internals, SQL parsing, query optimization, and storage engine design. I also want to use this project to learn Rust and understand the hype behind it.
I want to learn more about:
- Database file formats and storage management
- B-tree indexing and data structures
- SQL parsing and query execution
- Transaction management and ACID properties
- Buffer management and caching
- Concurrent access patterns
RustDB is a simple SQL database engine that (hopefully at some time) implements a subset of SQLite's functionality. It supports basic SQL operations, persistent storage, and simple indexing.
- Basic SQL parsing and execution
- CRUD operations (CREATE, READ, UPDATE, DELETE)
- Simple query optimizer
- B-tree based indexing
- Basic transaction support
- Simple buffer manager
- Command-line interface
- Full SQL compliance
- Production-level performance
- Network protocol support
- Advanced features like triggers or views
- Full SQLite compatibility
- Follow Rust best practices and idioms
- Write comprehensive tests for each component
- Keep performance in mind but prioritize correctness
- Use error handling appropriately
- Add logging for debugging
- Ensure you have Rust installed (cargo 1.84+ recommended)
- Clone the repository
- Run
cargo build
to build the project - Run
cargo test
to execute tests
MIT License - feel free to use this for your own learning purposes.