This document discusses improvements to PHP performance on Windows over the past few years. Key points include: - PHP performance on Windows has improved significantly through the use of FastCGI, PHP 5.3 optimizations, and the WinCache opcode cache. - FastCGI avoids starting new PHP processes for each request, reusing processes in a pool for better performance. - WinCache provides opcode, file, and path caching to further boost PHP performance on Windows. - PHP 5.3 brought optimizations like using the VC9 compiler and optimized Windows API calls. - Future work includes popular PHP apps adopting WinCache and continued WinCache improvements.
