Can people-in-the-know comment and/or take action on LUCENE-1315?

If it is unpalateable, let me know the right way to do something along
these lines:

    reader = IndexReader.open(directory);
    searcher = new IndexSearcher(reader);

    LocateRegistry.createRegistry(port);
    Naming.rebind(name, new RemoteSearchable(searcher));

    while (true) {
        IndexReader oldReader = reader;
        reader = oldReader.reopen();
        searcher.setIndexReader(reader);
        oldReader.close();
    }

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to