Re: sort groups by the sum of the scores of the documents within each group

2014-05-10 Thread Frankcis
hei, Erick, Sorry to bother you again, i send the client requirement to you in the solr mail list, but i can't get your reply, i want your advice. 2014-05-06 13:24 GMT+08:00 Frankcis [via Lucene] < ml-node+s472066n413486...@n3.nabble.com>: > thank you, Erick, you're good man, > this is the clien

Join in solr to get data from two cores

2014-05-10 Thread Kamal Kishore
Dear Team, I have two solr cores. One containing products information and second has customers points. I am looking at solr join to query on first product core & boost the results based on customer points in second core. I am not able to frame solr query for this. Moreover, solr is not allowing t

RE: Physical Files v. Reported Index Size

2014-05-10 Thread Darrell Burgan
Perfect - thanks for the information! -Original Message- From: Shawn Heisey [mailto:s...@elyograg.org] Sent: Wednesday, May 07, 2014 7:15 PM To: solr-user@lucene.apache.org Subject: Re: Physical Files v. Reported Index Size On 5/6/2014 9:34 PM, Darrell Burgan wrote: > > Hello all, I'm t

Is it possible for solr to calculate and give back the price of a product based on its sub-products

2014-05-10 Thread gharbi mohamed
Hi, I am using Solr for searching magento products in my project, I want to know, is it possible for solr to calculate and give back the price of a product based on its sub-products(items); For instance, i have a product P1 and it is the parent of items m1, m2. i need to get the minimal price of

Solrcore.properties variable question.

2014-05-10 Thread Guido Medina
Hi, We have a couple of Solr servers acting as master and slave, and each server have the same amount of cores, we are trying to configure the solrcore.properties so that an script is able to add cores without changing the solrcore.properties using a hack like this: enable.master=false enabl

ContributorsGroup add request

2014-05-10 Thread Jim Martin
Greetings- Please add me the ContributorsGroup; I've got some Solr icons I'd like to suggest to the community. Perhaps down the road I can contribute more. I'm the team lead at Overstock.Com for search, and Solr is the foundation of what we do. Username: JamesMartin Thanks, -Jim

LetterTokenizerFactory doesn't work as expected

2014-05-10 Thread ienjreny
Dears:I am applying LetterTokenizerFactory as it is mentioned at the following linkhttp://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.LetterTokenizerFactoryBut when I am using the analyzer on "I can't" the results are:LCF text i can'tBut in the documentation is mentioned to be "i", "

Re: Is it possible for solr to calculate and give back the price of a product based on its sub-products

2014-05-10 Thread Ahmet Arslan
Hi Gharbi, It looks like CollapsingQParserPlugin can do that? fq={!collapse field=parent_id min=price_field} https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=40509582 Ahmet On Sunday, May 11, 2014 5:29 AM, gharbi mohamed wrote: Hi, I am using Solr for searching magento p

Re: Physical Files v. Reported Index Size

2014-05-10 Thread Shawn Heisey
On 5/6/2014 9:34 PM, Darrell Burgan wrote: > > Hello all, I’m trying to reconcile what I’m seeing in the file system > for a Solr index versus what it is reporting in the UI. Here’s what I > see in the UI for the index: > > https://s3-us-west-2.amazonaws.com/pa-darrell/ui.png > > As shown, the inde

Re: Solrj problem

2014-05-10 Thread blach
SOLVED, I didn't use SOLRJ, just normal Httpclient methodes + asynktask HttpClient client = new DefaultHttpClient(); URI uri = new URI(params[0]); HttpGet Gett = new HttpGet(uri);