I going to create a app but trying to work out the base way of storing the data locally. This will be a simple game and will have the following:
- Users (basic info like name and age)
- Catergories (Game Categories)
- Games (linked to the user, also may look at storing images locally)
I thought about using pouchdb which would allow syncing in the future (not required initially). What I would like to know if it would be better to have 1 pouchdb to store all the information or 1 pouchdb for each section of data I need to store.
Also are the better alternatives to pouchdb which can support syncing?