sql >> Databasteknik >  >> NoSQL >> MongoDB

MongoDB:Kombinera textsökning och geospatial fråga

Mongo DB i sig stöder inte text- och geosökning samtidigt.Se detta

Men du kan kombinera frågan och uppnå resultatet

Lösningar

  1. regex + nära
const aggregate=YourCollection.aggregation()
aggregate.near({
    near:coord,
    includeLocs: "loc",
    distanceField: "distance",
    maxDistance: distance
});
aggregate.match({name:{$regex:keyword,$options: 'i'}})
aggregate.exec(function(err,yourDocuments){
    //your smart code
}) 
  1. Textsökning + regex

    var aggregate=YourCollection.aggregate();
    var match= {
      latitude: { $lt: yourCurrentLatitude+maxDistance, $gt: yourCurrentLatitude-maxDistance },
      longitude: { $lt: yourCurrentLongitude+maxDistance, $gt: yourCurrentLongitude-maxDistance },
      {$text:{$search:keyword}}
    };
    
    aggregate.match(match).exec(function(err,yourDocuments){//your smart code})
    
  2. Mapreduce + ( Textsökning Eller regex )

YourCollection.mapReduce(map, reduce, {out: {inline:1, query : yourFirstQuery}}, function(err, yourNewCollection) {
// Mapreduce returns the temporary collection with the results
    collection.find(yourNewQuery, function(err, result) {
      //your awsome code
    });
});


  1. Använder Redis för att cachelagra SQL-resultat

  2. En säkerhetschecklista för MongoDB-produktionsinstallationer

  3. Mongodb $där frågan alltid är sann med nodejs

  4. Redis-servern kan inte köra mer än 1024M maxheap