如何统计mongodb中的重发推文号码

时间:2017-07-12 01:51:34

标签: mongodb twitter

我想算一下MongoDB中有多少转推。我通过流媒体API获得了Twitter数据。

这是我的不同查询,但没有一个工作..请帮助我

db.collection.find({"retweet_count":{$ne:0}}).count()
db.collection.find({retweeted:ture}).count()
db.collection.find({retweeted:false}).count()

相关数据结构

{ 
   "retweeted" : false, 
    "in_reply_to_status_id" : null, 
    "in_reply_to_status_id_str" : null, 
    "is_quote_status" : false, 
    "id_str" : "815351057677094912", 
    "created_at" : "Sun Jan 01 00:16:55 +0000 2017", 
    "id" : NumberLong("815351057677094912"), 
    "retweet_count" : 0, 
    "truncated" : false, 
    "contributors" : null 
}

0 个答案:

没有答案