psperber / redux-persist-electron-storage

Redux persist adapter for electron-store
52 stars 5 forks source link

Storage file size limitation #1

Closed alanlanglois closed 6 years ago

alanlanglois commented 6 years ago

I was wondering if some kind of size limitation exists using electron storage. I'm facing an issue using AsyncStorage, and electron storage might fix it. How data are stored and is there a limitation using it to save and restore the states of my app?

psperber commented 6 years ago

electron-store is using a simple textfile for holding the data, so you IO should be the only limitation. But keep in mind: AsyncStorage is for react-native, isn't it? electron-storage is only working in electron application, therefore i guess it won't fit your requirements.