Re: how to do auto-suggest case-insensitive match and return original case field values

2009-12-14 Thread hermida
terms.regex=%5Eabc.%2A&terms.regex.flag=case_insensitive where %5E = ^ and %2A = * Voila! hermida wrote: > > > Uri Boness wrote: >> >> Just updated SOLR-1625 to support regexp hints. >> >> https://issues.apache.org/jira/browse/SOLR-1625 >> >> Chee

Re: how to do auto-suggest case-insensitive match and return original case field values

2009-12-08 Thread hermida
Uri Boness wrote: > > Just updated SOLR-1625 to support regexp hints. > > https://issues.apache.org/jira/browse/SOLR-1625 > > Cheers, > Uri > This is perfect, exactly what is needed to make this functionality possible. Is the patch already in trunk? thanks, leandro -- View this message i

Re: how to do auto-suggest case-insensitive match and return original case field values

2009-12-08 Thread hermida
Hello, Thanks for the reply (see below) hossman wrote: > > The type of approach you are describing (doing a prefix based query for > autosuggest) probably won't work very well unless your index is 100% > designed just for the autosuggest ... if it's an index about products, and > you're jus

Re: how to do auto-suggest case-insensitive match and return original case field values

2009-12-08 Thread hermida
Hi again, Just pinging again to any Solr experts out there... sorry that my previous message was a bit long (wanted to fully explain what I've already done and where the exact difficulty arises)... but to summarize: Does anyone know how to use Solr querying with faceting to do an auto-suggest th

how to do auto-suggest case-insensitive match and return original case field values

2009-12-04 Thread hermida
Hi everyone, New to forum and to Solr, doing my first major project with it and enjoying it so far, great software. In my web application I want to set up auto-suggest as you type functionality which will search case-insensitively yet return the original case terms. It doesn't seem like TermsCo