python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
using pinia states and dexie in the same time?
For my app I'm using Vue3, pinia for state management, and dexie as indexedDB wrapper.
my app work this way:
on Mount :
data is fetched from dexie and saved in a pinia state.
then in my component , da...
Lassaad
Votes: 0
Answers: 0
Does IndexedDB persist with a new service-worker?
Does the indexedDB persist when I unregister a service worker and install a new one?
If I would manually unregister the service-worker like this
navigator.serviceWorker
.getRegistrat...
brezz0r
Votes: 0
Answers: 1
Large dataset workaround on browser
I am creating a function which is able to store large datasets, currently i have tested with 200k Records which is about 200MB. In Production , datasets will have about 5million and above which will r...
Farid Arshad
Votes: 0
Answers: 0
Create multiple Schema in indexed DB
I am trying to create mutiple schema with indexed db , the scripts that implemented is
const openDB = () => {
var indexedDB = window.indexedDB || window.mozIndexedDB || window.webkitInd...
Farid Arshad
Votes: 0
Answers: 1