Re: How to implement a proximity search using LINES as slop

2011-02-10 Thread Doron Cohen
> > Pierre > > -Message d'origine- > De : Livia Hauser [mailto:livia.hau...@web.de] > Envoyé : mardi 8 février 2011 22:51 > À : java-user@lucene.apache.org > Objet : RE: How to implement a proximity search using LINES as slop > > Hi Pierre, > > many tha

RE: How to implement a proximity search using LINES as slop

2011-02-09 Thread Pierre GOSSE
indeed. I hope some lucene expert can give his insight about all this. :) Pierre -Message d'origine- De : Livia Hauser [mailto:livia.hau...@web.de] Envoyé : mardi 8 février 2011 22:51 À : java-user@lucene.apache.org Objet : RE: How to implement a proximity search using LINES as

RE: How to implement a proximity search using LINES as slop

2011-02-08 Thread Livia Hauser
RE: How to implement a proximity search using LINES as slop >Hi Livia, > >One way of doing this line slope would be to implement a custom tokenizer that >could tokenize on new line, and split each token into the words it contains. >I.e. Each word of a line would be seen as being

RE: How to implement a proximity search using LINES as slop

2011-02-08 Thread Pierre GOSSE
Hi Livia, One way of doing this line slope would be to implement a custom tokenizer that could tokenize on new line, and split each token into the words it contains. I.e. Each word of a line would be seen as being at the same position (and having same offset and length as the complete line).