tursodatabase/libsql

Make the WebAssembly runtime configurable

Open

#120 建立於 2023年1月26日

在 GitHub 查看
 (3 留言) (0 反應) (1 負責人)C (490 fork)batch import
good first issuehelp wanted

倉庫指標

Star
 (16,744 star)
PR 合併指標
 (平均合併 23小時 19分鐘) (30 天內合併 1 個 PR)

描述

Right now the WebAssembly runtime is initialized with default settings only: https://github.com/libsql/libsql/blob/bd68c17adf23c038fcfc44813ea2a943b423ca63/src/rust/wasmtime-bindings/src/lib.rs#L80-L90

It would be nice to have a way of modifying the defaults, e.g. the WebAssembly stack size, various time limits, profiling, preemptions, etc. Here's how Wasmtime can be configured: https://docs.wasmtime.dev/api/wasmtime/struct.Config.html

libsql_wasm_engine_new function does not take parameters now, but we could extend it with a configuration struct, that can be used to pass custom options, e.g. passed as preprocessor macros or a custom PRAGMA statement.

貢獻者指南