I've been trying to use web sql database api in webkit based browsers. I have been using the async api in the main ui thread and a web worker. Both threads access the same database (which as you know is sqlite underthehood)

Everything behaves fine but occassionally transactions are lost or one transaction fails and it seems to be a timing/race condition. It appears access to the underlying sqlite database is not thread-safe.

A bit more background. My web worker is simply executing a query against a table that may have a record inserted into it from the main ui thread.

I am wondering if it is actually documented somewhere what local/web storage can be accessed safely from both the ui thread and the web worker thread? I've read somewhere that the indexeddb api is thread safe but that does not help me right now since browser support for it is poor/non-existent for the browsers I am targeting (at least I think so - I get my information from http://caniuse.com )

Any insights would be gratefully received

link|improve this question
I didn't even know that its possible to access local storage in worker thread? See stackoverflow.com/questions/6179159/… – Teemu Ikonen Feb 17 at 21:39
Yes you maybe right. I possibly made the incorrect assumption since WEB SQL databases are accessible from the worker thread. Unfortunately they do not seem to be thread safe when you open the same web sql database from 2 the browser ui and the web worker. – user1207420 Feb 21 at 9:35
WebSQL is deprecated - so I guess you don't wish to use it (even if it was thread safe). Soon we will have indexedDB support in webWorkers. – Ido Green Mar 11 at 13:17
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.