I used to store full text into lucene index. But I found it's very slow when merging index because when merging 2 segments it copy the fdt files into a new one. So I want to only index full text. But When searching I need the full text for applications such as hightlight and view full text. I can store the full text by <url,full text> pair in database and load it to memory. And When I search in lucene(or solr), I retrive url of doc first, then use url to get full text. But when they are stored separately, it is hard to managed. They may be not consistent with each other. Does lucene or solr provied any method to ease this problem? Or any one has some experience of this problem?
--------------------------------------------------------------------- To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org For additional commands, e-mail: java-user-h...@lucene.apache.org