HOMEWORK: HOMEWORK 4.2 Suppose you have a collection called tweets whose documents contain information about the created_at time of the tweet and the user's followers_count at the time they issued the tweet. What can you infer from the following explain output? > db.tweets.explain("executionStats").find({"user.followers_count":{$gt:1000}}).limit(10).skip(5000).sort( { created_at : 1 } ) { "queryPlanner" : { "plannerVersion" : 1, "namespace" : "twitter.tweets", "indexFilterSet" : false, "parsedQuery" : { "user.followers_count" : { "$gt" : 1000 } }, "winningPlan" : { "stage" : "LIMIT", "limitAmount" : 0, "inputStage" : { "stage" : "SKIP", ...
Yorumlar
Yorum Gönder