David Fahlander

Results 560 comments of David Fahlander

*Note: I just updated the my code snippet with type annotations and renamed `subscriber` to `emit`*

Thanks for reporting. 100,000 records is a lot and whether 5 seconds is a long time to retrieve 100 k records depends on the size of each record. It also...

So my questions are: * browser version? * approx size of records? * your use case explained.

> This is a major issue still in 2024 after years since originally posted. In my tests even when a table has no data the toArray() supposed to return empty...

Yes, include time with the existing index and use `between()` as such: ```ts const db = new Dexie('dbname'); db.version(1).stores({ myTable: 'primaryKey, [idx1+idx2+idx3+time]` }); function doTheQuery(idx1Value, idx2Value, idx3Value, time) { return...

Library is now on npm: https://www.npmjs.com/package/dexie-svelte-query

Thanks! It's not an easy fix. We've solved async blob reading in [typeson](https://github.com/dfahlander/typeson) library but in dexie cloud, we took an easier and more optimized path with a lighter version...

Thanks! This will open up for improving performance in dexie. I'll keep a close eye on it.

Just saying that if (and only if) the complexity kills or delays this proposal, please go forward with a plan B and I also want to kill the myth that...

Basically falling back to a limited proposal (without the whole web platform) would not leave us screwed forever, as a new level could be added in upcoming proposal. It would...