Skip to content

Instantly share code, notes, and snippets.

@luizkowalski
Created December 24, 2014 13:00
Show Gist options
  • Save luizkowalski/cd31dc67ed0ef7b5c721 to your computer and use it in GitHub Desktop.
Save luizkowalski/cd31dc67ed0ef7b5c721 to your computer and use it in GitHub Desktop.
match = { "$match" => { "$messages.created_at" => { "$gte" => 1.day.ago } } }
group = { "$group" => { _id: '$messages', count: {"$sum" => 1 } } }
sort = { "$sort" => { count: -1 } }
limit = { "$limit" => 3 }
Room.collection.aggregate([match, group, sort, limit])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment