You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The obvious and official solution for SQL-like functionality in the browser is now IndexedDB. Could the docs address the tradeoffs between sql.js and IndexedDB (including performance on large datasets)?
The text was updated successfully, but these errors were encountered:
IndexedDB is not really SQL - like. If your use case is simple enough to be handled easily with IndexedDB, use IndexedDB. If you need SQL, go with sql.js.
@lovasoa Yes, that much I know. But I am a smart guy and I can probably make my code work either way. The question is, what are the tradeoffs? (One obvious one is that IndexedDB is persistent, while (raw) sql.js is not. What else should I be considering? What about the performance of some average queries across large datasets -- is there a benchmark?)
If the maintainers of sql.js are not interested in helping users understand these tradeoffs, perhaps someone else from the community can point me to a resource that covers this in more detail?
The obvious and official solution for SQL-like functionality in the browser is now IndexedDB. Could the docs address the tradeoffs between sql.js and IndexedDB (including performance on large datasets)?
The text was updated successfully, but these errors were encountered: