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

Examine lucene.net custom query after analyzer tokenizes

I'm using Examine in Umbraco to query Lucene index of content nodes. I have a field "completeNodeText" that is the concatenation of all the node properties (to keep things simple and not search across multiple fields). I'm accepting user-submitted…
0
votes
1 answer

Retrieve html content via examine umbraco

I like to know how to retrieve content with html tags, I am using following code to retrieve content but it does not include the html tags within the content: var searchProvider = ExamineManager.Instance.DefaultSearchProvider.Name; var searchResults…
0
votes
1 answer

Umbraco Lucene search for auto complete

How do I modify search to be able hit my searchString? I have variables with following values: fieldName: nodeName searchString: des I want to be able to find a nodeName by any contiguous characters in it: e.g. find Esa selects Ariane 6 basic…
cpoDesign
  • 8,953
  • 13
  • 62
  • 106
0
votes
1 answer

lucene.net/examine weight html tags

I've got this project where we are implementing Examine / Lucene.net. And I'm look for some guidance from you guys. As far as I have been able to find out from the knowledge of google, is that if I want to boost the weight, I need to boost the…
-1
votes
2 answers

Umbraco: Get Grid content in search results?

I have a simple Examine search like so; var results = Umbraco.Search(Request.QueryString["query"], true, "MySearcher"); foreach (var result in results) {

@result.Name

Content from 'contentgrid'?

} My question is, how do I get a…
brother
  • 7,651
  • 9
  • 34
  • 58
-1
votes
1 answer

umbraco pdf searcher result ranking

We have used pdf searcher (nuget package) within one of our Umbraco applications. When I see the pdf search results it does not look 100% correct. The top 2 pdfs in the search result contain the search term, but the 3rd, 4th and remaining other pdfs…
Shraddha G
  • 31
  • 2
-1
votes
2 answers

Can I use variable in place of repeat count in Examine command GDB, x/10xw Address

In Examine command GDB, x/10xw Address. Can I use a variable in place of repeat count, i.e can I use a variable in place of 10, like x/($var)xw Address? This is how my .gdbinit looks like. I need to do some calculations and use the variable ( var3…
1 2 3 4 5
6