about 2.4 release date?

2008-07-05 Thread paulgao
I would like to ask about the 2.4 version of the release date? -- View this message in context: http://www.nabble.com/about-2.4-release-date--tp18299251p18299251.html Sent from the Lucene - Java Developer mailing list archive at Nabble.com. -

Re: Untokenized URL

2008-07-05 Thread Shai Erera
I think that the simplest solution will be to index the URL field twice, once as TOKENIZED and once as UN_TOKENIZED. Then you can look up the un_tokenized term. If you have a document in hand and only want to fetch its URL, then add the URL twice, once as Store.NO, Index.TOKENIZED and once as Store

Re: Untokenized URL

2008-07-05 Thread blazingwolf7
No, I didn't store the contentLength. Just adding it into the index. Which until now I am still scratching my head as I can't think of another way to retrieve it without continuously using the reader. As for the url, I use doc.add(new Field("url", Store.NO,Index.TOKENIZED). I will like to keep it