sql >> Databasteknik >  >> NoSQL >> MongoDB

Hur sorterar man i mangust?

I Mongoose kan en sortering göras på något av följande sätt:

    Post.find({}).sort('test').exec(function(err, docs) { ... });
    Post.find({}).sort([['date', -1]]).exec(function(err, docs) { ... });
    Post.find({}).sort({test: 1}).exec(function(err, docs) { ... });
    Post.find({}, null, {sort: {date: 1}}, function(err, docs) { ... });


  1. Hur fungerar PubSub i BookSleeve/ Redis?

  2. Hur ansluter du till ett replikset från ett MongoDB-skal?

  3. MongoDB inte lika med

  4. Anslutningssträng i MongoDB (med exempel)