how to do incremental indexing in Lucene.Net ?
i have not given a particular id to document i want to search document by query....
Deepak
2010-09-06 04:19:17
how can i delete the particular documents?
Deepak
2010-09-06 04:20:11
You need to use an indexReader to go to the document and then use Delete. You need to either use an id to find it or iterate through all the documents until you get to the one you want.
Woody
2010-09-06 09:42:08
through iterating it will take too much time.......bcos that collection is very large.. do u have Any another option...
Deepak
2010-09-08 10:06:23
Yes, put an id in each document and search by id
Woody
2010-09-08 17:36:45