David Fahlander
David Fahlander
Thanks, it's an example on https://dexie.org/cloud/docs/authentication#customizing-login-gui that was published after this issue.
> Really confused by this - is it simpler if I am willing to delete the table in an upgrade? Had no idea something simple like this would require anything...
True, but the implementation would have to choose whether to use the index for sorting or filtering. With Dexie (as of current version at least), you will have to make...
If you only want the top X items you'd normally be better off using the index for sorting and filtering out the data in memory. That way your performance wont...
I'm sorry to say that I cannot give an estimate for that, though I wish I could. If the Collection class where rewritten to be more abstract (not tied to...
@aprixon01112017 The state of Dexie 3 is still that you need to choose what you want to use the index for - if used for sorting, use orderBy(), if used...
That piece of code in the docs is conceptual. It represents a way of using the index for sorting on other key than the indexes used for filtering. I don't...
> Hi @dfahlander, thanks for giving us `Dexie.js`, it is totally amazing. Just wanted to check on v4 plan > > > The plan is to release a new major...
It will be possible. I've got this request from another customer as well. It will require configuring a custom SMTP gateway or sendgrid account though if that's ok.
Svelte supports also a subscription object and will call .unsubscribe() on it instead when it detects that the returned value is not a function. I'll see if I can find...