Replies: 1 comment 2 replies
-
https://www.joshmorony.com/creating-a-multiple-user-app-with-pouchdb-couchdb/ -> here the rationale for the DB per user approach is described. It definitely has quite some limitations (no easy querying across users, performance suffers when you have too many DBs), but if you want an offline-first app that syncs directly via PouchDB/rxdb, it can be a good choice. But you could also just use |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm curios, every time I register a user, it creates a separate database for them and would like to know why, I'm coming from mongodb and everything was shared, to give the user there data we used a
partition key
with theuser id
to get there specific data. Is it possible to achieve the following with couchdb?Beta Was this translation helpful? Give feedback.
All reactions