Limbo is a project to build the next evolution of SQLite.
Find a file
Lauri Virtanen adc6f9b6cd
Add unhex(X) scalar function
This commit adds `unhex(X)` scalar function. Function with `unhex(X,Y)`
two arguments is not implemented yet.

Relates to issue #144
2024-09-30 00:13:43 +03:00
.github/workflows github: Fix stale workflow 2024-09-21 08:20:42 +03:00
bindings Fix clippy 2024-09-15 16:23:27 +09:00
cli Better support for BLOBs 2024-09-22 17:55:00 +03:00
core Add unhex(X) scalar function 2024-09-30 00:13:43 +03:00
perf/latency perf/latency: Add rust-toolchain to limbo benchmark 2024-07-22 22:24:24 +03:00
scripts scripts/merge-pr.py: Manually map Github username to email address 2024-09-22 07:05:08 -04:00
simulator Improve Simulator IO by handing RowResult::IO 2024-09-26 20:00:55 +05:30
sqlite3 Revert part of "Fix source formatting with cargo fmt" 2024-09-22 08:58:48 -04:00
test Nit 2024-09-16 23:07:50 +09:00
testing Add unhex(X) scalar function 2024-09-30 00:13:43 +03:00
.github.json pere mailmap 2024-09-23 15:29:17 +02:00
.gitignore Check requirements.txt files in Python workflow 2024-09-01 16:10:59 +03:00
Cargo.lock Add support for hex scalar function 2024-09-22 08:50:08 -04:00
Cargo.toml rename core tester in cargo.toml 2024-09-13 07:56:21 +02:00
CHANGELOG.md Update CHANGELOG.md 2024-09-18 09:47:05 +03:00
COMPAT.md Add unhex(X) scalar function 2024-09-30 00:13:43 +03:00
CONTRIBUTING.md Update CONTRIBUTING.md 2024-07-24 09:04:49 +03:00
flake.lock improve nix flake by moving to fenix 2024-07-16 19:52:39 -07:00
flake.nix update flake to include tcl latest (addresses #243) and add core foundation lib and link flags for darwin 2024-08-01 18:00:46 -07:00
LICENSE.md License 2024-05-07 16:33:44 -03:00
limbo.png Limbo mascot 2024-07-05 09:51:56 +03:00
Makefile update flake to include tcl latest (addresses #243) and add core foundation lib and link flags for darwin 2024-08-01 18:00:46 -07:00
Pipfile Updated Pipfile 2024-07-12 13:07:34 -07:00
Pipfile.lock Added Pipfile and Pipfile.lock 2024-07-12 12:38:56 -07:00
README.md Add Discord link to README.md 2024-08-31 12:02:37 +03:00

Limbo

Limbo

Limbo is a work-in-progress, in-process OLTP database management system, compatible with SQLite.

Build badge MIT Discord


Features

  • In-process OLTP database engine library
  • Asynchronous I/O support with io_uring
  • SQLite compatibility (status)
    • SQL dialect support
    • File format support
    • SQLite C API
  • JavaScript/WebAssembly bindings (wip)

Getting Started

Installing:

curl --proto '=https' --tlsv1.2 -LsSf \
  https://github.com/penberg/limbo/releases/latest/download/limbo-installer.sh | sh

Limbo is currently work-in-progress so it's recommended that you either use the sqlite3 program to create a test database:

$ sqlite3 database.db
SQLite version 3.42.0 2023-05-16 12:36:15
Enter ".help" for usage hints.
sqlite> CREATE TABLE users (id INT PRIMARY KEY, username TEXT);
sqlite> INSERT INTO users VALUES (1, 'alice');
sqlite> INSERT INTO users VALUES (2, 'bob');

or use the testing script to generate one for you:

pipenv run ./testing/gen-database.py

You can then start the Limbo shell with:

$ limbo database.db
Welcome to Limbo SQL shell!
> SELECT * FROM users LIMIT 1;
|1|Cody|Miller|mhurst@example.org|525.595.7319x21268|33667 Shaw Extension Suite 104|West Robert|VA|45161|`

Developing

Run tests:

cargo test

Test coverage report:

cargo tarpaulin -o html

Run benchmarks:

cargo bench

Run benchmarks and generate flamegraphs:

echo -1 | sudo tee /proc/sys/kernel/perf_event_paranoid
cargo bench --bench benchmark -- --profile-time=5

FAQ

How is Limbo different from libSQL?

Limbo is a research project to build a SQLite compatible in-process database in Rust with native async support. The libSQL project, on the other hand, is an open source, open contribution fork of SQLite, with focus on production features such as replication, backups, encryption, and so on. There is no hard dependency between the two projects. Of course, if Limbo becomes widely successful, we might consider merging with libSQL, but that is something that will be decided in the future.

Publications

  • Pekka Enberg, Sasu Tarkoma, Jon Crowcroft Ashwin Rao (2024). Serverless Runtime / Database Co-Design With Asynchronous I/O. In EdgeSys 24. [PDF]
  • Pekka Enberg, Sasu Tarkoma, and Ashwin Rao (2023). Towards Database and Serverless Runtime Co-Design. In CoNEXT-SW 23. [PDF] [Slides]

Contributing

We'd love to have you contribute to Limbo! Check out the contribution guide to get started.

License

This project is licensed under the MIT license.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Limbo by you, shall be licensed as MIT, without any additional terms or conditions.