Questions tagged [edismax]

Extended DisMax is an improved version of the solr DisMax, a popular query mode with Apache Solr

The Extended DisMax Parser is a new and more advanced DisMax parser introduced in the Apache Solr 3.1 release as experimental.

It improves punctuation handling and relevancy calculations, boolean operators among other things. See JIRA SOLR-1553 for more details.

146 questions
1
vote
1 answer

Solr dismax highlighting not respecting analyzer

In the schema of Solr 3.6.2 there are two field declarations, text and exact The former using StandardTokenizer and…
Johan Sjöberg
  • 47,929
  • 21
  • 130
  • 148
1
vote
1 answer

Is it possible to have a Solr Query that brings me "all matches" or "some matches" in the same result?

For example. I have these rows stored in my Solr. {city: "Boston", country: "USA"}, {city: "Miami", country: "USA"}, {city: "Orlando", country: "USA"} I'll search by "Boston USA". In that case I'd like to return a single result because my search…
Danilo Akamine
  • 705
  • 7
  • 13
1
vote
2 answers

Why solr dismax query returns empty resultset?

I'm trying to get free-text search results from indexed data with solr 4.5 using Dismax Query Parser but no results returning and no errors with simple queries like…
edigu
  • 9,878
  • 5
  • 57
  • 80
1
vote
0 answers

computed field norms in solr are the same for fields of different size

I have created two documents in Solr: 1.00711 ejn01:2560000000075596 Journal of neurology research 1.00711
1
vote
0 answers

Solr edismax query not returning any result

the following solr query is eluding me, can anyone provide some advice? fq={!edismax qf=$kwf}myToken&kwf=schemaField1 schemaField2 when myToken is found in the first field all is well, but I never get any hit on the second. I have already checked…
Eddy
  • 1,662
  • 2
  • 21
  • 36
1
vote
2 answers

What means "document popularity" in Solr

What is document popularity in solr indexing..? EDisMax parser uses boost parameter. In the example &boost=popularity like that I noticed one query. I couldn't understand what is boost as well as boost=popularity. Before understanding the boost…
gangatharan
  • 781
  • 1
  • 12
  • 28
1
vote
2 answers

what type of parser have been used in solr

If I have not specified defType in solr query which parser will be used, whether DisMax or EDisMax ?
gangatharan
  • 781
  • 1
  • 12
  • 28
1
vote
1 answer

Boost page with specific fonts in solr

I crawled a website with Apache Nutch and index it to Apache Solr.How i can boost a document that query word exist in specific font(like h2 html tag or...)? for example my query is book and there are two page that contain book. in first page book is…
Amir
  • 341
  • 1
  • 5
  • 16
0
votes
1 answer

Parameter bq modify facet counts using grouping

I am using solr trunk to search some documents and group them by their category, but I have to group them first by another field. More specifically I am using this schema: component_id: string category: string name: text And I have two…
Juampa
  • 154
  • 1
  • 7
0
votes
1 answer

Solr edismax SearchHandler clarification

I am using edismax SearchHandler in my search and I have some issues in the search results. As I understand if the "defaultOperator" is set to OR the search query will be passed as -> The OR quick OR brown OR fox implicitly. However if I search for…
indit
  • 305
  • 1
  • 5
  • 11
0
votes
1 answer

SOLR edismax search with expressions

I have a field "spell" with text: piazzata apposta apposta per tenere al caldo queste sue prime ore al mondo How can I search something like this: http://localhost:8080/solr/select?q={!type=edismax qf=spell v='apposta apposta per'} OR…
vladimir
  • 695
  • 3
  • 10
  • 23
0
votes
1 answer

SOLR edismax search

I have 2 documents in SOLR: first id = 125 spell = Quanti disperati si rovescerebbero con i barconi sulle nostre coste... second id = 321 spell = Quanti disperati si rovescerebbero con i barconi sulle nostre…
vladimir
  • 695
  • 3
  • 10
  • 23
0
votes
0 answers

Does the Spell check component works with EdisMax queries?

What happens if I use the solr spell checker component on the /select handler, and when making a query I use edisMax? I'm particulary interested in the _query_ 'magic field'. Example: q=Helikopter"_query_:"{!edismax qs=2 pf='' qf='test^1 test_2^1…
Bruno Brito
  • 345
  • 4
  • 17
0
votes
1 answer

Apache Solr: Why does the boost parameter in eDisMax result in squared score boosting?

I am using Apache Solr for my search functionality and I have encountered an unexpected behavior with the boost parameter in the eDisMax query parser. When I try to boost the score of the documents matching a certain query, the scores are getting…
Sumit Raj
  • 11
  • 2
0
votes
0 answers

How to do multifield search using query field boost and phrase boost in edismax?

I have a following query which works as expected using edismax q=Golden Door qf=book_title^4 book_description^2 tags^1.2 pf=book_title~2^6 book_description~125^2 Above query generate the following edismax query, which is…
Gurmit Teotia
  • 179
  • 2
  • 7