need help in search

2015-10-05 Thread Bhaskar
Hi, when I type 143-00098 I should get all matched result i.e ( 143-00098, 143-000981, 143-0009823). also If i type 143-000 then i should 143-00098, 143-0009, 143-0001) Looks like the searching is treating "-"( hyphen) as subtract or exclude pages that contain a specific term.. In my case it

Re: Need help in alphanumeric search

2015-10-05 Thread Bhaskar
Hi, when I type 143-00098 I should get all matched result i.e ( 143-00098, 143-000981, 143-0009823). also If i type 143-000 then i should 143-00098, 143-0009, 143-0001) Looks like the searching is treating "-"( hyphen) as subtract or exclude pages that contain a specific term.. In my case it

Re: need help in search

2015-10-05 Thread Doug Turnbull
Curious if you've tried escaping with \ ie 143\-00098 On Monday, October 5, 2015, Bhaskar wrote: > Hi, > > > when I type 143-00098 I should get all matched result i.e ( 143-00098, > 143-000981, 143-0009823). also If i type 143-000 then i should 143-00098, > 143-0009,

Re: need help in search

2015-10-05 Thread Jack Krupansky
Sounds like you need the edge n-gram filter at index time to index all of the prefix strings for each term. Just be aware that using an n-gram filter will explode the size of the index (all the extra terms) The standard tokenizer and word delimiter filter will split terms on special characters,

Re: need help in search

2015-10-05 Thread Alessandro Benedetti
+1 on Jack, furthermore, are you taking about search or autocomplete ? If you only need autocompletion on the term, maybe it's even better if you take a look to the Lucene suggest module ! Cheers 2015-10-05 14:34 GMT+01:00 Jack Krupansky : > Sounds like you need the

Re: need help in search

2015-10-05 Thread will
Hi Bhaskar: or everyone's benefit, I hope you will collate the emails into a wiki page and carry it forward. Meritocracy's might have rtfm'd the whole thing. With all respect: Will On 10/5/15 1:06 PM, Bhaskar wrote: Hi, Actually I am looking for auto complete only. Do we have auto