9 releases

0.8.2 Feb 15, 2024
0.8.1 Jan 19, 2024
0.8.0 Dec 9, 2023
0.7.3 Nov 8, 2023
0.6.1 Aug 13, 2023

#499 in Database interfaces

Download history 17/week @ 2024-01-15 108/week @ 2024-02-12 17/week @ 2024-02-19 35/week @ 2024-02-26 8/week @ 2024-03-04 13/week @ 2024-03-11 6/week @ 2024-03-18 159/week @ 2024-03-25 20/week @ 2024-04-01 3/week @ 2024-04-08 10/week @ 2024-04-15

193 downloads per month
Used in 4 crates (via spacetimedb-core)

Custom license

160KB
4K SLoC

Abstract Virtual Machine for execution of end-user logic

It optimizes the code & include a more general "query planner"

The execution is split in 3 "phases":

1- AST formation

Generate the AST (that could be invalid according to the semantics).

This step is outside the [vm] and can be done, for example, by the SQL layer.

Use [dsl] to build the [expr:Expr] that build the AST.

2- AST validation

Calling eval::optimize verify the code has the correct semantics (ie: It checks types, schemas, functions are valid, etc.), and "desugar" the code in a more optimal form for later execution.

This build expr::ExprOpt that is what could be stored in the database, ie: Is like bytecode.

3- Execution

Run the AST build from expr::ExprOpt. It assumes is correct.

Dependencies

~8–15MB
~183K SLoC