Mongodb, a collection named 'blog' has a 'tags' field, just like this
blog1.tags=['javascript', 'node.js', 'express']
blog2.tags=['javascript', 'jquery']
blog3.tags=['javascript', 'node.js']
now I need a hot tag list, which like this
[['javascript', 3], ['node.js', 2], ['express', 1], ['jquery', 1]]
how can I do it?