sqlite-zstd icon indicating copy to clipboard operation
sqlite-zstd copied to clipboard

Transparent dictionary-based row-level compression for SQLite

Results 33 sqlite-zstd issues
Sort by recently updated
recently updated
newest added

corrected spelling error in readme file

That's the error I'm getting when running `SELECT zstd_incremental_maintenance(null, 1);` Input: ``` SELECT zstd_enable_transparent('{"table": "absatz","column": "text", "compression_level": 19, "dict_chooser": "''a''"}'); SELECT zstd_incremental_maintenance(null, 1); ``` Output: ``` [2022-08-04T11:36:24Z WARN sqlite_zstd::transparent] Warning:...

Something like https://github.com/mlin/sqlite_zstd_vfs. Pretty different in the tradeoffs and design decisions, but still should be compared to.

env-logger is no longer maintained: https://github.com/env-logger-rs/env_logger/issues/159#issuecomment-1160443092 API of tracing is similar

Hi, phiresky I'm planning to cross compile this extension to android target, is it possible? Currently, I'm trying to cross complie using [this doc](https://rust-lang.github.io/rustup/cross-compilation.html).

I tried using this on a database I'm using to store a lot of raw JSON objects, which I then have a view that uses SQLite's JSON support to extract...

I'm experimenting with compressing a somewhat bigger sqlite database, but sqlite keeps on running out of memory and is being killed by the OOM killer when I run `SELECT zstd_incremental_maintenance(null,...

Hi Platform Windows 10x64. I tried to load the extension from CMD and sqlite3 with `sqlite3 -header database.sqlite -cmd ".load sqlite_zstd.dll"` but I get error " The specified module could...

Actually, issue #4 was not fixed — it still unusable as a crate. It is possible to made it working if you replace ```toml crate-type = ["cdylib"] ``` with ```toml...

There is a utility from the SQLite devs that can archive a directory as a SQL file. I'm fairly new to the whole SQL world (more of a NoSQL guy...