You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we write a VFS in rust and compile to webassembly, we can share that pointer with the sqlite to register the VFS and use it. This would be a performance boost since we don't need to cross the JS barrier for storage I/O operations, and would allow us to customize the VFS from rust rather than JS, allowing for more complex operations (maybe encryption, async, etc, allow finer-grained connection management?)
Roy has an extensive index of examples in the wa-sqlite repository, which can be used to model the Rust VFS: Example VFS's
The text was updated successfully, but these errors were encountered:
If we write a VFS in rust and compile to webassembly, we can share that pointer with the sqlite to register the VFS and use it. This would be a performance boost since we don't need to cross the JS barrier for storage I/O operations, and would allow us to customize the VFS from rust rather than JS, allowing for more complex operations (maybe encryption, async, etc, allow finer-grained connection management?)
Roy has an extensive index of examples in the wa-sqlite repository, which can be used to model the Rust VFS: Example VFS's
The text was updated successfully, but these errors were encountered: