Re: Facet count mismatch between solr simple facet and Json facet API.

2015-11-29 Thread rks_lucene
I am facing the same issue. Thanks for letting me know about the JIRA. I think this is a very big issue especially for those looking at Solr as a NoSQL analytics engine. Ritesh -- View this message in context:

Re: Search for All CAPS words

2015-08-07 Thread rks_lucene
Took me a while but I tried it and its works perfectly. Thanks a lot !! Ritesh -- View this message in context: http://lucene.472066.n3.nabble.com/Search-for-All-CAPS-words-tp4219893p4221597.html Sent from the Solr - User mailing list archive at Nabble.com.

Search for All CAPS words

2015-07-30 Thread rks_lucene
Hi, I need the capability to search for /GATE/ separately from /gate/. I cannot remove the lowercase filter factory in both my search and analysis chains since that will break many other search scenarios. Is there a way to payload/mark an ALL CAPS word in the index analyzer chain before it gets

Re: Search for All CAPS words

2015-07-30 Thread rks_lucene
Thanks and I did think of the copy field option. So what you are suggesting is that I have a copyfield in which I do not keep the lowercase factory analyzer in my indexing/query chains. I am afraid that would not help if my search query is complex with many words (say a boolean with proximity

Question on Solr Relevancy using Okapi BM25F

2014-08-19 Thread rks_lucene
I am trying to get OkapiBM25F working over some press release articles I am indexing. The data has text portions spread across 3 fields - Title, Summary and Full Article. I would like to influence the standard BM25 by giving more weight to words in title and summary of the article than the full

Re: Group.Facet issue in Sharded Solr Setup

2014-02-11 Thread rks_lucene
Quick follow up on my question below and if anyone is using Group.facets in a sharded solr setup ? Based on further testing, the group.facets counts dont seem reliable at all for lesser popular items in the facet list. -- View this message in context:

Group.Facet issue in Sharded Solr Setup

2014-02-07 Thread rks_lucene
Am facing an issue with counts when using group.facets in my sharded solr. (Groups do not overlap across shards and for various reasons I cannot use group.truncate) Now, the problem being faced is that for items ranking lower in the faceted list sorted by count, the group facet counts are coming

Can this type of sorting/boosting be done by solr

2012-02-23 Thread rks_lucene
Hi, I have a journal article citation schema like this: { AT - article_title AID - article_id (Unique id) AREFS - article_references_list (List of article id's referred/cited in this article. Multi-valued) AA - Article Abstract --- other_article_stuff ... } So for example, in

Re: Can this type of sorting/boosting be done by solr

2012-02-23 Thread rks_lucene
Dear Chantal, Thanks for your reply, but thats not what I was asking. Let me explain. The size of the list in AREFS would give me how many records are *referred by* an article and NOT how many records *refer to* an article. Say if an article id - 51463 has been published in 2002 and refers to

Re: Can this type of sorting/boosting be done by solr

2012-02-23 Thread rks_lucene
Hi Chantal, Yes, I have thought about the docfreq(field_name,'search_text') function, but somehow I will have dereference the article id's (AID) from the result of the query to the sort. The below query does not work: q=AT:metalsort=docfreq(AREFS,$q.AID) Is there a mistake in the query that am