David Fahlander

Results 556 comments of David Fahlander

I'm hoping Safari would fix the SharedArrayBuffer support. But in case it would take years before it happens, I worry a bit over the current fallback solution: 1. it needs...

I've followed this issue for a while now of curiosity and I think it's time to share my own solution to the problem, implemented in [Dexie](https://github.com/dfahlander/Dexie.js) version 2.0. It has...

That is true. Maybe the check `(scopeFunc.constructor === AsyncFunction)` might not be the best solution. Thinking of whether it would be better to always do `incrementExpectedAwaits()` and inspect whether returnValue...

True. Unless accompanied with a coding guideline of how to utilize zones together with native async await.

@gyanendra2058 There had been browser-specific crash issues regarding bulk deletes earlier (IE and safari) but dexie has workaround for those. It would be marvelous to get a complete repro of...

> @dfahlander Sorry for being a pest ..but did you got a chance to look into the code and the IDB exported files? Not yet. This is open source work...

Collection.delete() performs bulkDeletes in chunks internally. The difference might be that bulkDelete does it in a single transaction. Maybe it hits some undocumented limit in chromium on how many operations...

You need to have jekyll installed. Then to start the docs server in dev mode: bundle exec jekyll serve --incremental It serves on localhost:4000.

mapToClass() should work with ES6 classes. Please link to an example in jsitor.com or similar showing what you do and explain what you were expecting.

ok thanks. I'll try repro it. In jsitor you can just include dexie in a script tag in the html part. For webpack style online editor, check codesandbox. For example...