Clemens
Clemens
thanks this helped! config_log gave me a disk io error: 6410 (SQLITE_IOERR_GETTEMPPATH). Which pointed me to: https://github.com/simolus3/drift/issues/876 Using "PRAGMA temp_store_directory = '/data/data/{app_id}/files';" solved the issue. As pointed out in the...
It seems rusqlite always builds with [SQLITE_TEMP_STORE](https://sqlite.org/compile.html#temp_store)=3 ("Always use memory", ): https://github.com/rusqlite/rusqlite/blob/c10e2f39ef478526c470ab61fb95c0c6b5b59cc4/libsqlite3-sys/build.rs#L209 Is there a change this doesn't get picked up during the build? e.g. I tried `cargo build --target...
thanks, this confirms some other findings I made yesterday: SQLITE_TEMP_STORE=2 in the android generated DB. I put some debug output into https://github.com/rusqlite/rusqlite/blob/c10e2f39ef478526c470ab61fb95c0c6b5b59cc4/libsqlite3-sys/build.rs#L18 (using a [patch.crates-io] patched version of rusqlite in...
thanks, I am actually getting it twice, once with linux and once with android: ``` [libsqlite3-sys 0.22.20] cargo:rerun-if-changed=sqlite3/sqlite3.c [libsqlite3-sys 0.22.20] cargo:rerun-if-changed=sqlite3/wasm32-wasi-vfs.c [libsqlite3-sys 0.22.20] !!! CARGO_CFG_TARGET_OS Ok("linux") [libsqlite3-sys 0.22.20] cargo:rerun-if-env-changed=SQLITE_MAX_VARIABLE_NUMBER [libsqlite3-sys...
thanks I will try to narrow done which endpoint/feature makes it slow
Thanks for looking into it. I just tried cargo check again and I get similar numbers on my machine (not sure if it takes longer if there are more errors)....
Do you think it could help to split an endpoint over multiple mods/crates and then use #[derive(MergedObject, Default)] to put them all together? (is it actually possible to use an...
I really hope this is the case :-) do you have any special bug in mind? A small update: I just added a small endpoint and after fixing all syntax...
I tried to split our big Query struct into two structs and then merge them back like in https://async-graphql.github.io/async-graphql/en/merging_objects.html, but this didn't help, i.e. editing the smaller new Query struct...
@Venryx we don't use SimpleObject maybe it would be worth trying to use `#[Object] impl MyNode { ... }` instead? even though it will be a bit more work... Small...