MongoDB
 sql >> Baza danych >  >> NoSQL >> MongoDB

Jak uzyskać odległość — funkcja MongoDB Template Near

Możesz to zrobić za pomocą agregacji geoNear . W wersji spring-data-mongodb GeoNearOperation reprezentuje tę agregację.

Rozszerz lub utwórz dziedzicz Place klasa z polem, w którym chcesz mieć informacje o odległości (przykład z dziedziczeniem):

public class PlaceWithDistance extends Place {
    private double distance;

    public double getDistance() {
        return distance;
    }

    public void setDistance(final double distance) {
        this.distance = distance;
    }
}

Zamiast Criteria z Query użyj agregacji. Drugi argument geoNear to nazwa pola, w którym należy ustawić odległość:

final NearQuery nearQuery = NearQuery
    .near(new Point(searchRequest.getLat(), searchRequest.getLng()));
nearQuery.num(5);
nearQuery.spherical(true); // if using 2dsphere index, otherwise delete or set false

// "distance" argument is name of field for distance
final Aggregation a = newAggregation(geoNear(nearQuery, "distance"));

final AggregationResults<PlaceWithDistance> results = 
    mongoTemplate.aggregate(a, Place.class, PlaceWithDistance.class);

// results.forEach(System.out::println);
List<PlaceWithDistance> ls = results.getMappedResults();

Dla ułatwienia – powiązane importy:

import static org.springframework.data.mongodb.core.aggregation.Aggregation.geoNear;
import static org.springframework.data.mongodb.core.aggregation.Aggregation.newAggregation;

import org.springframework.data.mongodb.core.aggregation.Aggregation;
import org.springframework.data.mongodb.core.aggregation.AggregationResults;
import org.springframework.data.mongodb.core.aggregation.GeoNearOperation;
import org.springframework.data.mongodb.core.query.NearQuery;


  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. Zapytanie o zagnieżdżoną tablicę w MongoDb

  2. Jak dynamicznie tworzyć schemat Mongodb za pomocą nodejs

  3. Jak usunąć element z podwójnie zagnieżdżonej tablicy w dokumencie MongoDB.

  4. Jakie miejsce zajmuje mongodb w twierdzeniu CAP?

  5. Cofnij Odpręż się łącznie w mongodb