For me, real time indexing is an essential as users today like real time results. That said, I sifted through the options described here: http://nlp.stanford.edu/IR-book/
There is a page on dynamic indexing proposing this: One solution would be to maintain two indexes: a large main index and a small auxiliary index that stores changes. The auxiliary index is kept in memory. Searches are run across both indexes and results merged. Deletions are marked to filter out deleted documents before returning the search result. Each time the auxiliary index becomes too large, we merge it into the main index (or feed different altindexes). This sounds like your proposal so that seems the way to go. I could not get index altindex= pages= to work, but maybe thats my old version 3.08 Greetings, Martin -- You received this message because you are subscribed to the Google Groups "BoltWire" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/boltwire?hl=en.
