Questions tagged [examine]

Examine is a .Net indexing and search engine powered by Lucene.Net

From the documentation:

Examine allows you to index and search data easily and wraps the Lucene.Net indexing/searching engine. Lucene is super fast and allows for very fast searching even on very large amounts of data. Examine is provider based so it is very extensible and allows you to configure as many indexes as you like and each may be configured individually. Out of the box Examine gives you abstract implementations of Lucene based indexers and searchers as well as a Fluent API that can be used to search for your data.

82 questions
0
votes
1 answer

Restart Timer Using Javascript

I try to use JavaScript to set timer for my quiz.(setInterval) but if I finish the quiz earlier and click on start button gain, the time will start counting at the time I stop the quiz. How can I restart the time after I click on the start button…
qyioma
  • 15
  • 6
0
votes
2 answers

Umbraco (Examine) Search - Synonyms

I am trying to implement synonym searching in the Examine search engine that comes with Umbraco 8 out of the box. Does anyone have any experience with implementing synonym searching in Examine/Umbraco 8. The options that I have been considering…
0
votes
1 answer

Case insensitive search in Examine Index (Lucene)

Is it possible to do a case insensitive search using Examine Index and Lucene without altering the data stored? I'm saving articles with Id, title, the text and a date. I don't want to index my data as lowercase since I want to read my data from the…
Carl Decks
  • 385
  • 4
  • 15
0
votes
0 answers

C# truncate before and after string or phrase match match, Umbraco and Razor

I am using Examine for a search and have descriptions on the pages that match the search terms. So for example someone searches 'flims about dogs', the search brings back everything for 'films', 'about', and 'dogs'. In my case 'dogs' is probably…
ClosDesign
  • 3,894
  • 9
  • 39
  • 62
0
votes
1 answer

How to bring newer content at the top of search results using Umbraco Examine?

We have an website created in Umbraco CMS and I am developing a site search functionality. There is a section within the website called "news" where regular updates are published. While listing results from news section (among other pages), I want…
TejSoft
  • 3,213
  • 6
  • 34
  • 58
0
votes
1 answer

How do I search a list of specific member Id using examine manager in umbraco

Good Day! How do I search a list of specific member Id using examine manager in umbraco. My code shows like this: …
Navi Oilab
  • 33
  • 1
  • 10
0
votes
1 answer

get url of image from Umbraco examine search UDI

I'm using Umbraco with Lucene and Examine I'm trying to get the url of a image but at the moment I get the following "umb://media/57ad107794724d0289b4f9fe44c298a8" How can I get the URL for the media from the UDI, my code attempt so far is…
Paul Thompson
  • 113
  • 2
  • 12
0
votes
0 answers

Umbraco Back Office content search fails on I - i character

Umbraco back office search fails on some Turkish characters. Some of them (Ç-Ş etc) works correctly. However the I stands for little ı and İ is for i. We have problem on I and İ characters. Using standart InternalIndexSet for back office with the…
0
votes
1 answer

Ignore casing in examine search Umbraco 7.6

I've created an indexer inside the examine manager from Umbraco 7.6 and would search for some items. I see that this is case sensitive, how could I disable this? This is what I've made: ExamineSettings.config inside the…
H. Pauwelyn
  • 13,575
  • 26
  • 81
  • 144
0
votes
1 answer

Get typed document from an index using Umbraco

What I'll try I've got a lot of persons inside the content tree and I'll create a new index for that. This is for improve the performance of the web application when searching for a specific person. Create the index I've made a new index in the…
H. Pauwelyn
  • 13,575
  • 26
  • 81
  • 144
0
votes
1 answer

Umbraco Examine, nested multiple boolean operators

I am trying to add these filters to an already reasonable complex Umbraco Examine query, and have seen that you can't mix the API with raw lucene query, so the whole thing might have to be done raw, which I was trying to avoid since its a query…
jenson-button-event
  • 18,101
  • 11
  • 89
  • 155
0
votes
1 answer

Umbraco Examine - Querying Integers not Working

I'm using Umbraco v.7.6.1 with Examine v0.1.82 (Lucene 2.9.4.1). I have a list of vehicles and a search form to query different types of fields, including Price. The Price field is a Numeric data field and in the ExamineIndex is defined as:
0
votes
1 answer

Performance issue, Umbraco on Azure

just wondering if anyone can help me with a performance issue I'm having with my site (v7.4.3), hosted on Azure. No autoscaling, Standard. Bear with it, it's one issue, but my info is quiet a long one. The site actually runs fairly well/fast but…
SatBav
  • 73
  • 1
  • 9
0
votes
1 answer

Does examine index search (Umbraco) support words with accents?

I am using Examine index search of Umbraco to search Ucommerce products. If I search for Loreal, it works fine. But when I search for L’Oréal, it gives me 500 error. Any help appreciated! Thanks
Harsheet
  • 728
  • 9
  • 23
0
votes
1 answer

Lucene search creteria change the word

I use lucene for searching. For each doc in index I have some field called "uniqueIdentifier" with type string. When I want to find all items with "uniqueIdentifier" == "haaglanden", I use the next code: var searcher =…
Dmitry
  • 477
  • 6
  • 20