This document summarizes a presentation about the WiredTiger In-Memory storage engine for MongoDB compared to the standard WiredTiger B-Tree storage engine. The Percona Memory Engine can provide up to 1000 times faster performance for OLTP workloads and 10 times faster reads compared to WiredTiger by storing data entirely in memory instead of on disk. It uses WiredTiger's document-level locking and B-Tree structure but without disk access. Typical use cases for the in-memory engine include caching, session storage, and temporary collections. The presentation provides examples of how to configure and optimize the engine for different scenarios including replica sets, sharded clusters, and combining it with WiredTiger for persistence.