Details
-
Bug
-
Resolution: Done
-
Major - P3
-
None
-
None
-
None
-
None
-
ALL
Description
After a server restart, pagesInMemory is low (as expected) but then using "touch" command to try forcing the collection into ram, it only increments by one. The data set used for testing was ~1.4gb.
> use enron_mail
|
switched to db enron_mail
|
> db.serverStatus({workingSet:1}).workingSet.pagesInMemory
|
5
|
> db.runCommand({touch:"messages", data:true, index:true})
|
{ "ok" : 1 }
|
> db.serverStatus({workingSet:1}).workingSet.pagesInMemory
|
6
|
>
|