sql >> データベース >  >> NoSQL >> MongoDB

マングースで分類する方法は?

    マングースでは、並べ替えは次のいずれかの方法で実行できます。

        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. mongoengineでOR句を使用するMongoDB

    2. MongoDB / PyMongo:複数の基準のクエリ-予期しない結果

    3. redisサーバーを実行し続ける方法

    4. ClusterControlでサポートされている最も人気のあるNoSQLデータベース