MongoDB uses memory mapped files and generally relies on the operating system to determine when to swap data on and off disk. (This oversimplifies a bit; journals are periodacally synced to disk for example).
If your data set is small enough to fit in RAM, you should for the most part see the system operating at memory speeds. If your data is truly transient and you are not concerned with recovery in case of a crash for example, you could run with journalling disabled, that will reduce disk I/O.
You might do some testing that way and see how much disk I/O you see...
-- Max
--
You received this message because you are subscribed to the Google Groups "mongodb-user" group.
To post to this group, send email to mongod...@googlegroups.com.
To unsubscribe from this group, send email to mongodb-user...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/mongodb-user?hl=en.