Skip to content

Instantly share code, notes, and snippets.

@squallstar
Created September 15, 2014 11:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save squallstar/87c4f5bc9f0ad4b1a1f5 to your computer and use it in GitHub Desktop.
Save squallstar/87c4f5bc9f0ad4b1a1f5 to your computer and use it in GitHub Desktop.
Suggested tags (Mongo aggregate)
[
{
"$match": {
"tags": {
"$in": [
"android",
"apple"
]
}
}
},
{
"$unwind": "$tags"
},
{
"$group": {
"_id": "$tags",
"value": {
"$sum": 1
}
}
},
{
"$match": {
"_id": {
"$nin": [
"android",
"apple"
]
}
}
},
{
"$sort": {
"value": -1
}
},
{
"$limit": 20
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment