I am working in Umbraco 7.2.6 version. I have a search functionality in our site. Search feature is not working properly using "Lucene" search. When I check for "Employee", I am getting results and when I tried "employee", I am not getting any result. Seems it is case sensitive.
Are you using the internal or external search instance from Examine?
(I'm guessing you're probably using Examine, which is an "easier" API/engine around Lucene)
You should only change the analyzer of the "external" index since Umbraco uses the internal(s) in the backoffice.
After changing from whitespace (if it ever were) to standard analyzer, you have to go to the developer dashboard, select the examine management tab, expand indexers\externalindexer\index info & tools and click "Rebuild Index".
Lucene Search in Umbraco Razor
Hi,
I am working in Umbraco 7.2.6 version. I have a search functionality in our site. Search feature is not working properly using "Lucene" search. When I check for "Employee", I am getting results and when I tried "employee", I am not getting any result. Seems it is case sensitive.
Tried the comment posted in this link also http://dot-net-tutorials.blogspot.in/2011/06/lucene-search-in-umbraco-searches-for.html.
But not working after that also.
Please hep me ASAP.
Thanks Anju
Any ideas please??
Hi Anju,
Are you using the internal or external search instance from Examine?
(I'm guessing you're probably using Examine, which is an "easier" API/engine around Lucene)
You should only change the analyzer of the "external" index since Umbraco uses the internal(s) in the backoffice.
After changing from whitespace (if it ever were) to standard analyzer, you have to go to the developer dashboard, select the examine management tab, expand indexers\externalindexer\index info & tools and click "Rebuild Index".
If you really want to get to know how this works, I recommend reading this book:
https://www.manning.com/books/lucene-in-action-second-edition
is working on a reply...