In Pouchdb, what can be the best way to handle multiple data collections? I mean, for example, that instead of a simple to-do list, I need multiple to-do lists, like: home to-do, work to-do, community to-do, and ecology to-do.
Should I put it all inside one db and use one key in each doc to determine which list it belongs to? Or should I use different db's? In my app the user will be able to freely create and remove those data collections (or to-do lists, in the example).
Thank you, Marcio Moreira