sql >> Database >  >> NoSQL >> MongoDB

Interne arraygrootte opvragen in MongoDB

als gebruikersnaam Alex uniek is, kun je de volgende code gebruiken:

db.test.insert({username:"Alex", tags: ['C#', 'Java', 'C++'] });
db.test.aggregate(
  {$match: {username : "Alex"}}, 
  {$unwind: "$tags"},
  {$project: {count:{$add:1}}},
  {$group: {_id: null, number: {$sum: "$count" }}}
);
{ "result" : [ { "_id" : null, "number" : 3 } ], "ok" : 1 }


  1. Wijzig de volgorde waarin eigenschappen worden weergegeven in MongoDB

  2. Redis instellen op Webfaction

  3. Redis niet in staat om verbinding te maken in drukke belasting

  4. Apache Hadoop-architectuur - HDFS, YARN &MapReduce