Closed libbyh closed 7 years ago
DBs need indices to make retrieval easier/faster.
db.tweets.createIndex( { user.id : 1 } , { background: true } )
More info here: https://docs.mongodb.com/v3.2/core/index-creation/
As of 3/24/17, Beckett is running MongoDB 3.2.
indices have been created by code for data retrieval of users...so for example if a collector items does not have indexes and user clicks on the term the first thing that happens is index creation ..
DBs need indices to make retrieval easier/faster.
Example
For user id
db.tweets.createIndex( { user.id : 1 } , { background: true } )
More info here: https://docs.mongodb.com/v3.2/core/index-creation/
As of 3/24/17, Beckett is running MongoDB 3.2.