Hi
If you google "Lucene xml" you'll find info, but I'll attempt to answer your questions below > ... > I wonder whether Lucene: > > (1) provides full-text search over content of XML elements ? Yes. If you index the content, lucene will let you search over it. > (2) provides substring search over values of attributes of XML elements ? Yes, there is wildcard support. Or use something like n-grams. > (3) scores relevance of matching XML documents ? Yes. > (4) allows to identify (in matching document) XML elements with matched > query terms and than navigate to parental/children nodes in XML ?structure ? Not really. > (5) provides a way to give more weight to some XML element types during > relevance scoring ? Yes. See boosting. Lucene is a library that doesn't index XML directly, but you can write code to parse your XML and feed it into lucene, specifying which fields you want indexed and which stored for later retrieval. -- Ian. --------------------------------------------------------------------- To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org For additional commands, e-mail: java-user-h...@lucene.apache.org