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

最初の文字によるmongodbグループ

    コレクション内のドキュメントがどのように表示されるかは表示されませんが、aggregate これを行うための収集方法:

    // Group by the first letter of the 'words' field of each doc in the 'test'
    // collection while generating a count of the docs in each group.
    db.test.aggregate({$group: {_id: {$substr: ['$words', 0, 1]}, count: {$sum: 1}}})
    



    1. Redis、セッションの有効期限、および逆引き参照

    2. RedisSentinel

    3. MongoDbとNodejsでajaxページネーションを行うための最良の方法は何ですか?

    4. マングース-基準によるサブドキュメントの検索