This document summarizes Chris Winslett's talk on MongoDB indexing and improving performance. It discusses:
1) Common performance issues in MongoDB like inefficient queries causing high CPU from table scans, and how to address them through indexing and schema design.
2) Examples of performance problems like social networking queries and messages, and how indexing on viewable data rather than relationships improved queries.
3) Tools for debugging like mongostat, logs, and currentOp to find slow queries and operations.
4) The importance of measuring performance, finding slow queries, and refactoring schemas and queries to optimize for desired queries through indexing rather than always adding more indexes.