Guest User

Untitled

a guest
Jun 18th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. > db.tiles.find({ position: { $within: { $box: [ [ 1466, -2128 ], [ 1506, -2088 ] ] } } }).explain()
  2. {
  3. "cursor" : "GeoBrowse-box",
  4. "nscanned" : 341,
  5. "nscannedObjects" : 341,
  6. "n" : 341,
  7. "millis" : 657,
  8. "indexBounds" : {
  9.  
  10. }
  11. }
  12. > db.tiles.find({ position: { $within: { $box: [ [ -1953, -412 ], [ -1913, -372 ] ] } } }).explain();
  13. {
  14. "cursor" : "GeoBrowse-box",
  15. "nscanned" : 24,
  16. "nscannedObjects" : 24,
  17. "n" : 24,
  18. "millis" : 4555,
  19. "indexBounds" : {
  20.  
  21. }
  22. }
Add Comment
Please, Sign In to add comment