Explorar el Código

Added geospatial index and search

master
Adrian Short hace 12 años
padre
commit
72041be422
Se han modificado 1 ficheros con 12 adiciones y 0 borrados
  1. +12
    -0
      app/models/post.rb

+ 12
- 0
app/models/post.rb Ver fichero

@@ -10,5 +10,17 @@ class Post
key :loc, Hash # { lng, lat }
timestamps!

ensure_index [[:loc, '2d']]

belongs_to :feed
EARTH_RADIUS_KM = 6378.0
def self.near(lat, lng, radius_km)
all(
:loc => {
'$nearSphere' => [ lng, lat ],
'$maxDistance' => radius_km / EARTH_RADIUS_KM
})
end
end

Cargando…
Cancelar
Guardar