Re: How to Add weightage to results from a certain category

2007-11-28 Thread anuvenk
a standard lucene query, add it as a clause +text:foo category:premium^10 If you are using dismax, add it via bq (a boosting query) bq=category:premium^10 -Yonik On Nov 28, 2007 4:01 PM, anuvenk [EMAIL PROTECTED] wrote: Hi, Forgive me if this question is silly..did u mean adding the param qf

Re: How to Add weightage to results from a certain category

2007-11-28 Thread anuvenk
That worked. Perfect. thanks. hossman wrote: : I tried bq=resourceType:Premium%20Forms^10. But it didn't make any : difference. : You can see the results here: look at the parsedquery_toString in the debug section of your responses. the space in your value makes it parse as

solr version upgrade

2007-11-29 Thread anuvenk
should i re-index all the data if i upgrade to the larest solr version? -- View this message in context: http://www.nabble.com/solr-version-upgrade-tf4899944.html#a14034971 Sent from the Solr - Dev mailing list archive at Nabble.com.

Re: synonyms

2007-11-30 Thread anuvenk
) or does it also bring up all matches for 'drunk' , 'driving','law' ? Yonik Seeley wrote: On Nov 30, 2007 5:39 PM, anuvenk [EMAIL PROTECTED] wrote: Should data be re-indexed everytime synonyms like word1,word2 or word1 = word2 are added to synonyms.txt Yes, if it changes the index

Re: solr version upgrade

2007-11-30 Thread anuvenk
on my work version. But can't re-index the data everytime i add a new stopword right. Yonik Seeley wrote: On Nov 29, 2007 6:26 PM, anuvenk [EMAIL PROTECTED] wrote: The schema hasn't been updated in a long time though. I have the same version of solr the same index configs on my local

synonyms

2007-11-30 Thread anuvenk
Should data be re-indexed everytime synonyms like word1,word2 or word1 = word2 are added to synonyms.txt -- View this message in context: http://www.nabble.com/synonyms-tf4925232.html#a14096050 Sent from the Solr - Dev mailing list archive at Nabble.com.

Re: synonyms

2007-12-03 Thread anuvenk
pls someone help!! I'll be able to proceed only after finding the answer for my question below anuvenk wrote: Ideally, would it be a good idea to pass the index data through the synonyms filter while indexing? Our index has huge volumes of data. And i can't re-index data everytime i add

Need an explanation for this synonym behaviour

2007-12-11 Thread anuvenk
Hi, I have some trouble with my synonyms.. I just added this synonym: specialized license plate,personalized license plate I tried the search term: florida specialized license plate The results i hoped for: I have a personalized license form for the state florida in my index. I was hoping

Re: Need an explanation for this synonym behaviour

2007-12-15 Thread anuvenk
1) Did you mean i have to re-post this question at another location.? If so, could you provide me with the link? 2) I did read http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#SynonymFilter But i still wasn't clear (sorry!!! Need some spoon feeding) so was hoping if someone could

pasedquery_ToString - how does it work

2008-01-04 Thread anuvenk
For the search term 'chapter 7' i have this parsedquery_ToString str name=parsedquery_toString +(text:(bankruptci chap 7) (7 chapter chap) 7 bankruptci^0.8 | ((name:bankruptci name:chap)^2.0))~0.01 (text:(bankruptci chap 7) (7 chapter chap) 7 bankruptci~50^0.8 | ((name:bankruptci

RE: Dealing with numbers in search terms

2008-01-04 Thread anuvenk
and document term spaces.? Its puzzling to me why some documents that just have the number 7 Steven Rowe wrote: Hi anuvenk, On 01/03/2008 at 9:20 PM, anuvenk wrote: I'm facing a crucial problem with numbers in the search terms for eg: searching for chapter 7 returns a couple of results

Search terms with quotes

2008-01-04 Thread anuvenk
My understanding of the searches with quotes is that say for eg: i search for 'child custody', solr would return documents that have 'child custody' as a single phrase. So obviously the number of results for 'child custody' with quotes would be lesser than the one without quotes. I noticed two