We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to add sqlite-zstd extension to ncruces/go-sqlite3 WASM driver?
ncruces/go-sqlite3
The text was updated successfully, but these errors were encountered:
Maybe, but it really depends on what you mean.
Any extension you can compile and statically link into your own Wasm, is probably fair game.
I can't give specific instructions for sqlite-zstd, but you can check how sqlite3.wasm is built, and how various extensions are linked and initialized. Then it's just a matter of using your own Wasm.
sqlite3.wasm
If, however, want you really want is readonly compressed databases, my suggestion is that you compress your entire database with Zstandard Seekable Format, and use zstd-seekable-format-go with the reader VFS.
Sorry, something went wrong.
Thank you! I'll give zstd-seekable-format-go a shot.
Please report any feedback!
No branches or pull requests
Is it possible to add sqlite-zstd extension to
ncruces/go-sqlite3
WASM driver?The text was updated successfully, but these errors were encountered: