Re: SOLR guidance required

2013-05-13 Thread Michael Della Bitta
Best advice in this thread. :) Michael Della Bitta Appinions 18 East 41st Street, 2nd Floor New York, NY 10017-6271 www.appinions.com The science of influence marketing. On Mon, May 13, 2013 at 1:29 PM, Lance Norskog wrote: > If this is for

Re: SOLR guidance required

2013-05-13 Thread Shawn Heisey
On 5/13/2013 11:55 AM, Furkan KAMACI wrote: Jason can you explain what you mean at here: "Where OR operators apply, this does not matter. But your Solr cache will be much more savvy with the first construct." If you need to OR different filters together, you have to have all those in the same

Re: SOLR guidance required

2013-05-13 Thread Upayavira
Multiple fq params are ANDed. So if you have fq=clause1 AND clause2, you should implement that as fq=clause1&fq=clause2. However, if you want fq=clause1 OR clause2, you have no choice but to keep it as a single filter query. Upayavira On Mon, May 13, 2013, at 06:55 PM, Furkan KAMACI wrote: > Jaso

Re: SOLR guidance required

2013-05-13 Thread Furkan KAMACI
Jason can you explain what you mean at here: "Where OR operators apply, this does not matter. But your Solr cache will be much more savvy with the first construct." 2013/5/13 Lance Norskog > If this is for the US, remove the age range feature before you get sued. > > > On 05/09/2013 08:41 PM, Ka

Re: SOLR guidance required

2013-05-13 Thread Lance Norskog
If this is for the US, remove the age range feature before you get sued. On 05/09/2013 08:41 PM, Kamal Palei wrote: Dear SOLR experts I might be asking a very silly question. As I am new to SOLR kindly guide me. I have a job site. Using SOLR to search resumes. When a HR user enters some keywor

Re: SOLR guidance required

2013-05-10 Thread Jason Hellman
One more tip on the use of filter queries. DO: &fq=name1:value1&fq=name2:value2&fq=namen:valuen DON'T: fq=name1:value1 AND name2:value2 AND name3:value3 Where OR operators apply, this does not matter. But your Solr cache will be much more savvy with the first construct. Jason On May 10, 20

Re: SOLR guidance required

2013-05-10 Thread pravesh
Aditya, As suggested by others, definitely you should use the filter queries directly to query SOLR. Just keep your indexes updated. Keep all your fields indexed/stored as per your requirements. Refer through the filter query wiki http://wiki.apache.org/solr/CommonQueryParameters

Re: SOLR guidance required

2013-05-10 Thread Aditya
Hi Kamal, It is feasible and that is the correct approach. Add additional fields like salary, experience etc to the index and filter the results. This way you could directly show the results to the user. It is always better to avoid two searches one in solr and other in db. You should maintain se

Re: SOLR guidance required

2013-05-09 Thread Shawn Heisey
On 5/9/2013 9:41 PM, Kamal Palei wrote: > I hope there must be some mechanism, by which I can associate salary, > experience, age etc with resume document during indexing. And when > I search for resumes I can give all filters accordingly and can retrieve > 100 records and strait way I can show 100