Only way I found to do it is you have to do the leg work to split you phrase and add a Or() to your examine search...
eg you probably want?
pseudo : give me results for "club house" OR "club" OR "house"
the fuzy should also add "Club" Or "Clubs" OR "clubs" etc.... but I'm finding that a little hit and miss... note if you remove fuzy (which is case insensitive) you have to then think case sensitivity too...
so pseudo : give me results for "club house" OR "club" OR "house" OR "Club" OR "House" OR "CLUB" OR "HOUSE"
Search for Multiple Word
Having examine search set up under umbraco v 4.9.1, i came across an issue where some of the search terms are not giving any output.
For example if i type "club" i get all pages and media files associated with the name club but no result if somehow i type "club house"
How do i set up my search to get 2 terms or a phrase?
Only way I found to do it is you have to do the leg work to split you phrase and add a Or() to your examine search...
eg you probably want?
pseudo : give me results for "club house" OR "club" OR "house"
the fuzy should also add "Club" Or "Clubs" OR "clubs" etc.... but I'm finding that a little hit and miss... note if you remove fuzy (which is case insensitive) you have to then think case sensitivity too...
so pseudo : give me results for "club house" OR "club" OR "house" OR "Club" OR "House" OR "CLUB" OR "HOUSE"
and maybe wildcards... OR "Club*" OR "House*"
XSLT search seemed so much simpler in comparison!
forgot to say... this thread helped me... and I posted an interim effort...
http://our.umbraco.org/forum/developers/extending-umbraco/25600-Examine-case-insensitive-keyword-search?p=1
is working on a reply...