As per http://guide.couchdb.org/draft/replication.html
Replication synchronizes two copies of the same database, allowing users to have low latency access to data no matter where they are. These databases can live on the same server or on two different servers—CouchDB doesn’t make a distinction. If you change one copy of the database, replication will send these changes to the other copy.
I have following 2 confisions:
- Does this mean that every replicated DB is a new DB/copy of original DB or does it refers to the original DB?
- On replication will it increase the size of DB?
Note: These confusions are in context of PouchDB(mobile) to CouchDB(server) interactions. To be more precise, I want to do something like https://stackoverflow.com/a/32206581/2904573
Have also gone through https://stackoverflow.com/a/4766398/2904573 but didn't got my answer.