Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a solr query similar to the following:

((myField:superneat AND myOtherField:somethingElse) OR NOT myField:superneat)

When running this, no results are returned. Using criteria on either side of the OR NOT returns results that I'd expect - they are just not working well together. In the case that myField matches superneat, I'm intending to also ensure that myOtherField is set to somethingElse, but if myField is not superneat, include it in the results.

Can someone explain why solr is not returning results for this kind of query? Should the query be restructured somehow - or is there a different way in which solr can be used to achieve the desired result?

share|improve this question

3 Answers

up vote 22 down vote accepted

I don't know why that doesn't work, but this one is logically equivalent and it does work:

-(myField:superneat AND -myOtherField:somethingElse)

Maybe it has something to do with defining the same field twice in the query...

Try asking in the solr-user group, then post back here the final answer!

share|improve this answer
Thank you for your help! This does indeed work - and I have posed this to the solr-user group. I'll post any useful things I hear from them here. – stolenricecakes Mar 11 '09 at 18:31
4  
Note that -myField:superneat OR myOtherField:somethingElse would also be the same and is slightly simpler. – Yorick Sijsling Nov 29 '11 at 9:49
2  
@YorickSijsling the point is that even though logically equivalent, Solr sometimes doesn't cope very well with purely negative queries like the one the OP posted or the one you posted. – Mauricio Scheffer Jul 12 '12 at 21:02
@Mauricio Scheffer - I would question that entirely. Could you explain more on how it doesn't cope very well? We run rather complex conditionals here and found it copes very well with billions of documents. – terrance.a.snyder Dec 25 '12 at 15:44
@terrance.a.snyder "complex conditionals" != "purely negative queries". Also, things might have improved in recent versions of Solr, I haven't checked. – Mauricio Scheffer Dec 25 '12 at 18:06
show 1 more comment
Instead of "NOT [condition]" use "(*:* NOT [condition])"
share|improve this answer
Thanx alot! This one worked for me even for complex queries while -(myField:superneat AND -myOtherField:somethingElse) approach - didn't! – dpetruha Apr 10 at 17:41

You can find the follow up to the solr-user group on: solr user mailling list

The prevailing thought is that the NOT operator may only be used to remove results from a query - not just exclude things out of the entire dataset. I happen to like the syntax you suggested mausch - thanks!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.