Does Berkeley DB provide support for forwarding write queries from clients to masters?
No, it does not. The Berkeley DB RPC server code could be modified to support this functionality, but in general this protocol is left entirely to the application. Note, there is no reason not to use the communications channels the application establishes for replication support to forward database update messages to the master, since Berkeley DB does not require those channels to be used exclusively for replication messages. Replication Manager does not currently offer this service to the application.• Can I use replication to partition my environment across multiple sites? No, this is not possible. All replicated databases must be equally shared by all environments in the replication group. • I’m running with replication but I don’t see my databases on the client. This problem may be the result of the application using absolute path names for its databases, and the pathnames are not valid on the client system. • How can I distinguish Berkeley DB messages from application messages? Th