5

再現する手順:

class Venue
  field :coordinates, type: Array
  index({coordinates: '2d'}, {min: -180, max: 180})
end

rake db:mongoid:create_indexes を実行しました

電話してみました:

Venue.geo_near([@lat, @long])

そして得た:

Moped::Errors::OperationFailure:
   The operation: #<Moped::Protocol::Command
     @length=135
     @request_id=3
     @response_to=0
     @op_code=2004
     @flags=[]
     @full_collection_name="encore_backend_test.$cmd"
     @skip=0
     @limit=-1
     @selector={:geoNear=>"venues", :near=>[43.670906, -79.393331], :query=>{}, :spherical=>true}
     @fields=nil>
   failed with error "no geo index :("

助言がありますか?

4

1 に答える 1

14

ばかげた間違い、RSpecで rakedb:mongoid:create_indexesを行うのを忘れていましたRAILS_ENV=test

コマンドを完了する

bundle exec rake db:mongoid:create_indexes RAILS_ENV=test
于 2013-07-15T03:33:45.090 に答える