Umbraco 12.1.2, ExternalIndex search in backoffice returns NO RESULTS
I deleted the entire TEMP folder, bin and obj folder.
I reran the application (multilanguage) and deleted the write.lock file, then rebuilt external index from backoffice.
There is no change.
The externalindex search returns no results in the backoffice "Examine management".
When searched for letter "a", it returns few results . one of the results is "fram-a-lokker". When search the entire name "fram-a-lokker", the search returned zero results.
Lucene treats differently some special characters which interfere with
correct match of the search terms to the respective fields. For
example the hyphen ('-') character is a reserved character meaning to
exclude keywords, the column (':') character is reserved as a
separator between field names and search terms.
Thanks Huw Reddick for the reply.
The issue is in the umbraco backoffice. I wanted to view how a custom editor property in the index is stored. The search is not working even for the text withtout special characters and search on nodeId
Umbraco 12.1.2, ExternalIndex search in backoffice returns NO RESULTS
I deleted the entire TEMP folder, bin and obj folder. I reran the application (multilanguage) and deleted the write.lock file, then rebuilt external index from backoffice.
There is no change. The externalindex search returns no results in the backoffice "Examine management".
When searched for letter "a", it returns few results . one of the results is "fram-a-lokker". When search the entire name "fram-a-lokker", the search returned zero results.
see here for an explanation and possible workaround
https://our.umbraco.com/forum/using-umbraco-and-getting-started/101385-hyphens-in-lucene-search-examine
Try passing the search query in quotes "fram-a-lokker" to force it to search for a phrase
Thanks Huw Reddick for the reply. The issue is in the umbraco backoffice. I wanted to view how a custom editor property in the index is stored. The search is not working even for the text withtout special characters and search on nodeId
The issue is fixed. Credits goes to Jesper Mayntzhusen
Added the below settings to umbraco.cms. "Indexing": { "ExplicitlyIndexEachNestedProperty": false }
ref: https://github.com/umbraco/Umbraco-CMS/pull/14648 https://docs.umbraco.com/umbraco-cms/reference/configuration/indexingsettings
is working on a reply...