I tried out the IndexedDB implementation and attempted to use it from a WebWorker. However, Datahike never finds the DB. My assumption is that konserve uses js/window.indexedDB which is not available in a WebWorker context. Replacing it with js/self.indexedDB or js/indexedDB could be enough to solve this.
I tried out the IndexedDB implementation and attempted to use it from a WebWorker. However, Datahike never finds the DB. My assumption is that konserve uses
js/window.indexedDB
which is not available in a WebWorker context. Replacing it withjs/self.indexedDB
orjs/indexedDB
could be enough to solve this.