David Fahlander

Results 556 comments of David Fahlander

Thanks for your PR, I will dive into it as soon as possible. I have seen cloning bug also in Firefox only and it seems to happen sporadically when storing...

Ok. The issue I got was due to storing a CryptoKey in indexedDB. For me it bugged out when running from a service worker on Firefox. The cryptoKey is stored...

Can you provide a runnable code these reproduce it. How do you trigger the database to be created?

I think there might be a problem in the way you are handling promises. Each of your methods should return a promise. You should not provide a callback to your...

Thanks for making me aware of your use case which seems to be a relevant one. I will look into this and come back

Thanks a lot @Ruskyj! It would be a great benefit if you could share a link to the source code also. I'd like to trace down the reasons of performance...

Number for Collection.where().equals() surprice a bit. But it doesn't say so much without knowing how the code is executed, awaited and whether it's in a transaction or not, how large...

Is a new Dexie instance created for every query? If so it could explain a longer response time due to the time it takes for the browser to open the...

The number of instances can be counted using `Dexie.connections.length`. It's strange that a plain equals- request takes seconds and not milliseconds. In [this fiddle](https://jsfiddle.net/dfahlander/xf2zrL4p) we get a completely different performance,...