Dear,
what is the relationship between wiredtiger cache and operation system cache?
wiredtiger cache: stores uncompressed data?
operation system cache:stores compress data?
then could you explain how mongo use wiredtiger cache and operation system cache of the read/write operation.
read:
1> if data is in wiredtiger cache, then read from this cache
2> if data is not in wiredtiger cache but in operation system cache: then read from operation system cache into wiredtiger cache and uncompress it? and finally return to client?
3> if data is in disk only, then read from disk to operation system cache first ,then read from operation system cache to wiredtiger cache and uncompress ?
write:
write to wiredcache first then to operation system cache and finally to disk???