0
我已經通過Streaming API收集了推文,並且想從MongoDB中進行查詢。MongoDB和Twitter查詢
我是新來的MongoDB,所以這會是正確的語法來查詢與任何座標或位置信息的tweet:
cursor = coll.find({"coordinates.type" : "Point"},{"coordinates" :1} or {"location": not "null" }, tailable = True, timeout = False)
我使用pymongo,這是一個上限的集合。
感謝
謝謝,但它不應該是:光標= coll.find({$或:[{ 「coordinates.type」:「點「},{」coordinates「:1}]},{」location「:{$ ne:」null「}},tailable = True,timeout = False) – user94628
find()函數的第一個參數是條件,第二個引用你想要檢索的字段的子集(在你的情況下,「座標」)。 – epochiero
好吧,所以coordinates.type和location是條件,座標將成爲coordinate.type的一個子集。 – user94628