MongoDB
 sql >> Base de Dados >  >> NoSQL >> MongoDB

MongoDB:Combine pesquisa de texto e consulta geoespacial


O próprio Mongo DB não suporta pesquisa geográfica e de texto ao mesmo tempo.Consulte isto

Mas você pode combinar a consulta e pode obter o resultado

Soluções

  1. regex + perto
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. Pesquisa de texto + 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 + ( Pesquisa de texto Ou 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
    });
});