Re: User search in Facebook like

2009-06-01 Thread Vincent Pérès
Thanks a lot for your answer it fixed all my issues !!! It's really well working ! Cheers, Vincent -- View this message in context: http://www.nabble.com/User-search-in-Facebook-like-tp23804854p23818867.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: User search in Facebook like

2009-05-31 Thread rswart
Hi Vincent, If I recall correctly a wildcard query does not use any of the filters defined in your fieldtype (search the news group for this). So using a LowerCaseFilterFactory does not work and you'll need to do the to lower case transform yourself on the client side (javascript?). However, if

Re: User search in Facebook like

2009-05-31 Thread Vincent Pérès
Thanks very much, that's solve my problem ! Now I see another question : how can I manage the lower/upper cases in my search? Thanks ! Dietrich Featherston-2 wrote: > > try searching for matches where the name starts with whatever the user has > entered so far with a wildcard > > ?q=vinc* >

Re: User search in Facebook like

2009-05-31 Thread Dietrich Featherston
try searching for matches where the name starts with whatever the user has entered so far with a wildcard ?q=vinc* Are you always going to be searching for names? If so you could see if the user has entered two terms and suffix each with a wildcard to get potentially more relevant searches. For