Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
$range = array('$or' => 
     array(  
         array('loc.lat' => array('$within' => 
         array('$centerSphere' => 
         array( array(floatval( $la ), floatval( $long )), $max  ))),
        'language' => 'de', 'M' => 'Y')
     ),
    array('loc.c' => 'de', array('loc.m' => array('$exists' => false)) ),   
    array('loc.w' => 12, array('loc.m' => array('$exists' => false)))
));

I don't know what is wrong with this query separated query work OK but with $OR show wrong data

    array(3) {
  ["$or"]=>
  array(1) {
    [0]=>
    array(3) {
      ["loc.lat"]=>
      array(1) {
        ["$within"]=>
        array(1) {
          ["$centerSphere"]=>
          array(2) {
            [0]=>
            array(2) {
              [0]=>
              float(50.0646501)
              [1]=>
              float(19.9449799)
            }
            [1]=>
            float(0.004390090937598)
          }
        }
      }
      ["language"]=>
      string(2) "pl"
      ["M"]=>
      string(1) "Y"
    }
  }
  [0]=>
  array(2) {
    ["loc.c"]=>
    string(2) "pl"
    [0]=>
    array(1) {
      ["loc.m"]=>
      array(1) {
        ["$exists"]=>
        bool(false)
      }
    }
  }
  [1]=>
  array(2) {
    ["loc.w"]=>
    string(2) "12"
    [0]=>
    array(1) {
      ["loc.m"]=>
      array(1) {
        ["$exists"]=>
        bool(false)
      }
    }
  }
}
share|improve this question
what are the separate queries? – Karoly Horvath Jul 8 '12 at 21:58

1 Answer

Format your code (arrays) properly, and you'll see the problem.

Hint: var_dump($range);

share|improve this answer
Formated, when i use without $or work fine. – Userpassword Jul 9 '12 at 16:21
yeah? if so, post the properly formatted, readable code... – Karoly Horvath Jul 9 '12 at 17:18
This is not about formatting beautiful. Problem is with Mongodb that not support geo queries with $or $all etc jira.mongodb.org/browse/SERVER-3984 so its just noposibbbbre – Userpassword Jul 10 '12 at 1:44

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.