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
I am creating a database at runtime based on the user id returned by the server. I'm seeing that for each SQLocalDrizzle instance I create, a new worker is created (and loaded from the server), along with the sqlite wasm (which is also loaded from the server). Is there a reason why the worker/wasm can't be shared between all instances of SQLocalDrizzle objects?
The text was updated successfully, but these errors were encountered:
Your application should never need to download the Worker or WASM code more than once. If it is, make sure your caching settings are not misconfigured.
I am creating a database at runtime based on the user id returned by the server. I'm seeing that for each SQLocalDrizzle instance I create, a new worker is created (and loaded from the server), along with the sqlite wasm (which is also loaded from the server). Is there a reason why the worker/wasm can't be shared between all instances of SQLocalDrizzle objects?
The text was updated successfully, but these errors were encountered: