Hello, I'm wondering if using a remote database scheme, the only way I have to access multiple databases in one host, is opening a server port for every one, and then issuing: handler1 = Xapian::remote_open( <host>, <port1>), handler2 = Xapian::remote_open( <host>, <port2> ), : : handlerN = Xapian::remote_open( <host>, <portN>) to access them. Thanks! Sebasti?n
On Tue, Dec 19, 2006 at 08:40:42AM -0300, Sebastian wrote:> I'm wondering if using a remote database scheme, the only way I have > to access multiple databases in one host, is opening a server port for > every one, and then issuing:You can create a "stub database" on the remote side which lists all the databases you wish to access together, and point a single xapian-tcpsrv at the stub database. Search for `stub' in the "Overview" document: http://www.xapian.org/docs/overview.html Cheers, Olly