Extended DisMax is an improved version of the solr DisMax, a popular query mode with Apache Solr
0
votes
2answers
38 views
Solr: High priority in fields
I'm trying to search in solr but I want to prioritize the search for a field (i.e. Title) over the match in other fields like "Directors".
This is part of my schema.xml
<fields>
<field ...
0
votes
0answers
17 views
solr 3.6 using VelocityResponseWriter
NoClassDefFoundError: org/apache/solr/response/QueryResponseWriter
while trying to use the configure edismax.
I followed the steps here
...
0
votes
2answers
80 views
How to perform these SOLR queries?
I have an indexed data(indexed using solrj from rdbms) having fields related to banking such as(sample):customerid, cust_name, accountno, amount, positions, pos_value, EOD_value etc
Now i want to do ...
0
votes
2answers
80 views
Solr: exclude only-number matches
I search for game "Mass Effect 2"
http://localhost:8085/solr/select/?defType=edismax&qf=title&q=Mass+Effect+2&mm=1
Besides of "Mass Effect 2" and "The Showdown Effect" it finds things ...
0
votes
1answer
48 views
Solr Minimum Match: ArrayIndexOutOfBoundsException
I have the following request handler which searches two text_en fields, Title and Body. The query works find without the minimum match setting. If I use the mm field, and if my search string is above ...
0
votes
2answers
73 views
Custom search query : edismax(user_entered_search_keywords) AND (condition A OR condition B)
My edismax is running perfect and it handles the query formation internally when i just pass the search keywords to dismax.
The next step of my implementation is a custom query where let dismax do ...
0
votes
1answer
144 views
Solr Edismax query wrongly produces result
I have 2 types of solr query.One uses EDisMax parser and other one uses standard query parser as default.Following are the 2 query I have used.Purpose of the query is document that doesn't contains ...
0
votes
0answers
64 views
Standard query parser and EDisMax query parser
In Solr some cases, Standard query parser fails to give result but EDisMax parser will give the result for the cases which fails in standard query parser.I want to know with example for what query and ...
0
votes
1answer
145 views
what document popularity in Solr document indexing?
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 ...
4
votes
2answers
887 views
What is the difference between dismax and EdisMax?
I like to know what is the difference between DisMax and EDisMax..?
Is Any useful reference to know about that.?As well I like to know what are the query DisMax failed to produce result , for that ...
1
vote
1answer
40 views
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 ?
0
votes
1answer
189 views
Solr - Exact and Stem search on same text with highlights
I am trying to perform exact and stemmed searches on text and get back "compiled" results.
Currently what I have:
There is text being stored in the stem field and it's copied into the quoted field. ...
0
votes
0answers
160 views
Solr dismax with qf returns nothing
I am trying to get the qf to work in solr 3.4
When I run this :
solr/biz/select?
q=halden
&fl=b_navn,b_adress,score
&defType=dismax
I get resultset and i see halden in both the b_navn ...
0
votes
2answers
151 views
solr dismax identify phrase match
I am searching for "i want honda bike" on a text field using edismax query handler.
My intent is to find out docs having "honda bike" in it.
Now the results containing "honda", "bike" and "honda ...
0
votes
0answers
133 views
Boolean query in Solr edismax search with parameters pf2 and pf3
For standard query, I use pf2 and pf3 to search bigram and trigram. However, when users type a boolean query, such as "instructor OR professor AND faculty", Solr just ignores "OR" and "AND" but treat ...
0
votes
0answers
396 views
Why doesn't SOLR function query work with boost parameter?
Consider the following use case in SOLR. If the field 'somefield' in a document has value 'somevalue' the score of the document must be 10, otherwise it must be 1.
I tried the following:
...
0
votes
1answer
90 views
Solr 3.1 to 3.6 upgrade syntax changes
Tried to upgrade and application from Solr 3.1 to 3.6.1 and stumbled upon the following issue:
The query like the one shown below worked in 3.1 but does not return any results in 3.6.1:
q=id:911 ...
0
votes
1answer
221 views
Solr search with hyphen and camel case not returning expected results
I have a solr search application which is failing in a specific case where the field value is both camelcased and hyphenated. Individually these cases work fine although together there is no match ...
0
votes
1answer
44 views
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 ...
1
vote
1answer
530 views
SOLR phrase query
I have a slight problem when searching with SOLR 4.0 and attempting a phrase query.
I have a field called "idx_text_general_ci" which is a case insensitive (all lowercased) field made up of all ...
0
votes
1answer
166 views
Can a Solr Request Handler modify the query string?
I'm trying to improve an existing solr search which uses the StandardRequestHandler. I'd like to switch to a dismax-based handler, however I'll need to remove the fieldname from the ...
0
votes
1answer
382 views
Fielded searches with Solr ExtendedDisMax Query Parser
I'm having a problem using the Solr ExtendedDisMax Query Parser with query that contains fielded searches inside not-plain queries.
The case is the following.
If I send to SOLR an edismax request ...
0
votes
1answer
530 views
Solr autocomplete based on edismax type error
i receive the following error when trying to implement auto-complete based on edismax type.
SEVERE: java.lang.IllegalStateException: field "locality_ng" was indexed without position data; cannot run ...
2
votes
1answer
436 views
Escaped asterisk/query mark do not escape when using leading wildcard in Edismax
I'm trying to find documents containing asterisks/query marks in Solr text field using Edismax parser. Everything works perfectly when I search for usual text (fq={!edismax}textfield:*sometext*) or ...
0
votes
1answer
146 views
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
...
4
votes
1answer
834 views
Solr edismax wildcard search does not find original string
I have next content in my Solr index:
west indian cherry in filed of type text_en (see below for field definition).
When I search with cherr* match is found.
Also search for cherri* matches word in ...
6
votes
2answers
3k views
What regular expression features are supported by Solr edismax?
Regular expressions allows for the pattern matching syntax shown below.
I'm trying to implement a powerful search tool that implements as many of these as possible.
I'm told that edismax is the most ...
0
votes
1answer
209 views
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 ...
1
vote
3answers
608 views
Solr - identical search result scores for multiple search terms?
I would like to know how it is possible to get different scores for a multiple terms search result?
Certain results in solr have the same score even when there are multiple terms in the query as you ...
3
votes
2answers
2k views
Solr Query with LIKE Clause
I'm working with Solr and I'd like to know if it is possible to have a LIKE clause in the query. For example, I want to know all organizations with "New York" in the title. In SQL, this would be ...
1
vote
1answer
182 views
Solr * vs *:* query performance
We're running Solr 3.4 and have a relatively small index of 90,000 documents or so. These documents are split over several logical sources, and so each search will have an applied filter query for a ...
2
votes
1answer
558 views
Solr Boost on non-query term
All my results are of type "active, inactive, historical" - this is a field indexed by Solr.
I want my results to be returned with a boost to type="active".
I could do ordering which will suffice, ...
2
votes
1answer
542 views
Solr 3.2 edismax
I am trying to use the edismax defType and am running into the following error.
HTTP ERROR : 400
Unknown query type 'edismax'
The request handler in the solrconfig.xml file looks as follows
...
2
votes
1answer
884 views
How to use solrj with the DismaxRequestHandler?
Due to lack of proper documentation , I am unable to figure out on how to use the dismaxRequestHandler with SolrJ.
On another note , is the standard request handler ,the default in SolrJ's ...
3
votes
1answer
2k views
Solr wrong sort text fields
I have "text_general" field in schema.xml
<fieldType name="text_general" class="solr.TextField" positionIncrementGap="100">
<analyzer type="index">
<tokenizer ...
0
votes
1answer
322 views
Solr - Boosting result if query is found in a special field
I am wondering if it is possible with Solr 3.4 to boost a search result, if the query is found in a special field without using the "fieldname:query"-syntax.
Let me explain:
I have several fields in ...
0
votes
1answer
593 views
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:
...
0
votes
1answer
1k views
solr dismax phrase search
I'm building an application which uses solr to match longer queries (typically, complete sentences) against indexed documents which are almost always shorter (search terms). So, my query looks like ...
0
votes
1answer
302 views
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 ...
1
vote
1answer
351 views
Querying fields in Apache Solr with PHP PECL
I am trying to query a specific field in Solr with PHP PECL.
Currently I am using the setQuery function, but this does not
let me set the query to a specific field.
Thanks
Kevin
2
votes
2answers
1k views
Solr: How to search multiple fields
I am using solrnet. I have a title and Description fields. I need to search both fields simultaneously. How do I do this?
2
votes
1answer
1k views
Solr eDisMax query
I have field "spell" with text "Quanti disperati si rovescerebbero con i barconi sulle nostre.."
I can search via edismax like this one:
q={!field f=spell}disperati si rovescerebbero' - OK
or
...
3
votes
1answer
4k views
Solr 3.3.0 - Increase field weight in search - boost field priority
I'm indexing with solr 3.3.0 these docs:
<book id="bk101">
<keywords>----</keywords>
<title>----</title>
<owner>----</owner>
...
3
votes
2answers
3k views
How to boost fields in solr
I already have the boost determined before hand. I have a field in the solr index called boost1 . This boost field will have a value from 1 to 10 similar to google PR rank. This is the boost that ...
0
votes
2answers
915 views
Dismax Request Handler
I'm using solr to search a set of data by name (e.g. "Dan" or "Joe Smith"). I'd like to return the results specified by the query (edit: with a wildcard on the end) in an order specified by another ...
0
votes
1answer
609 views
Solr : eDismax does not always use the defaultOperator “AND”
I set the defaultOperator at "AND" in schema.xml :
<solrQueryParser defaultOperator="AND"/>
I use the defType=eDismax in my query. It works very well, but when I want to use "AND" or "OR" ...
0
votes
1answer
642 views
Solr date boost and sort by relevant results NOT working properly
I am implementing Solr dismax search and also using this function recip(ms(NOW,PubDate),3.16e-11,1000,1000) for date boost. Everthing is working fine but only got one problem.
if search keywords are ...
0
votes
1answer
466 views
Solr3.2 Carrot2 Clustering nothing but “Other Topics”
it is said that the Carrot integration into Solr was improved since the release of Solr 3.2 but it turns out to be different for me. I had a absolutly same configurated Solr 1.4.1 Server running were ...
0
votes
1answer
325 views
How do I index different sources in Solr?
How do I index text files, web sites and database in the same Solr schema? All 3 sources are a requirement and I'm trying to figure out how to do it. I did some examples and they're working fine as ...
2
votes
1answer
946 views
Sunspot `LIKE` query
I'm using sunspot. How can I run a LIKE query (LIKE %q%)? I would like to do something like this:
@search = Sunspot.search(User) do |q|
q.text_fields { with(:company_name).like(params[:q]) }
...
