Reputation: 581
Am trying to compare the read-write time of mongodb with and without WiredTiger. I found that for both read and write, mongodb with WiredTiger is taking more time than without WiredTiger. I am using node-mongo program for testing.
From what I understand, the performance should improve after using wiredtiger. Can anyone help me with this?
Upvotes: 1
Views: 1217
Reputation: 42342
WiredTiger has better throughput due to ability to handle higher concurrency. It does not have better latency on single threaded workload.
When you run your tests single-threaded, or on a host with few processors, you should not expect WiredTiger to be faster than MMAPv1.
Upvotes: 2