Re: Performance impact using edismax over dismax

2014-02-06 Thread Srinivasa7
HI Jack,

I am not using pf parameter rather I am sending query in Quotes. 

So sample query string for  'east ende rs'

I am querying "east ende rs"+OR+east+ende+rs with defType is solrconfig set
to edismax.

Other than that I am not using any parameters (pf, pf2, pf3)


Thanks 
Srinivasa





--
View this message in context: 
http://lucene.472066.n3.nabble.com/Performance-impact-using-edismax-over-dismax-tp4115821p4115841.html
Sent from the Solr - User mailing list archive at Nabble.com.


Performance impact using edismax over dismax

2014-02-06 Thread Srinivasa7
Hi All,

I have a requirement to search a query for entire string in the query
parameter, so I have shifted my query processor to edismax, and sending the
query as  'actual query string'+OR+actual+query+string.


It it returning desired results how ever I am wondering whether there is a
performance impact.

Any thoughts?

Using solr 3.6.2


Thanks 
Srinivasa



--
View this message in context: 
http://lucene.472066.n3.nabble.com/Performance-impact-using-edismax-over-dismax-tp4115821.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: KeywordTokenizerFactory - trouble with "exact" matches

2014-01-30 Thread Srinivasa7
Aleksander Akerø 
It would be great if you can share the solution how you are handling it on
field basis



--
View this message in context: 
http://lucene.472066.n3.nabble.com/KeywordTokenizerFactory-trouble-with-exact-matches-tp4114193p4114435.html
Sent from the Solr - User mailing list archive at Nabble.com.


Re: KeywordTokenizerFactory - trouble with "exact" matches

2014-01-30 Thread Srinivasa7
Hi, 

I  have similar kind of problem  where I want search for a words with spaces
in that. And I wanted to search by stripping all the spaces . 

I have used following schema for that 



  









 


And 







But it is not searching the right terms . we are stripping the spaces and
indexing lowercase values when we do that. 


Like : East Enders 

when I seach for   'east end ers'  text, its not returning any values saying
no document found.

I realised the solr uses QueryParser before passing query string to the
QueryAnalyzer in defined in schema. 

And The Query parser is tokenizing the query string providing in query . So
it is sending each token to the QueryAnalyser that is defined in schema. 


SO is there anyway that I can by pass this query parser or use a correct
query processor which can consider the entire string as single pharse. 

At the moment I am using dismax query processor.

Any suggestion would be much appreciated.

Thanks 
Srinivasa



--
View this message in context: 
http://lucene.472066.n3.nabble.com/KeywordTokenizerFactory-trouble-with-exact-matches-tp4114193p4114432.html
Sent from the Solr - User mailing list archive at Nabble.com.