InterviewSolution
| 1. |
What is reverse replication, and how does it work? |
|
Answer» The process of copying content from the publish environment to the author environment is known as reverse REPLICATION. You'll need a reverse replication agent on your author instance that's enabled to get content from the publish environment outbox to achieve this. Publish instance is used in reverse replication. USER data is STORED in the "outbox" by the reverse replication agent (A repository location where data is temporarily held). Another agent matching agent exists in the author instance, and it polls data from publish on a regular basis. If data is FOUND in the publish instance's outbox, it is synchronised with the author instance. This way, data SYNCHRONISATION from publisher to author can be managed. |
|