Folia is a Minecraft server software that adds regionalized multithreading to a Paper-based dedicated server.
Minecraft servers traditionally process all game logic on a single thread, creating a bottleneck that limits performance as server complexity grows. Folia addresses this by dividing the game world into regions and processing each region on its own thread, allowing multiple regions to execute simultaneously. This regionalized approach means that entities and chunks within a region stay together on the same thread, avoiding the synchronization overhead that would come from splitting individual chunks across threads. The tool maintains compatibility with the Paper API while enabling servers to utilize multiple CPU cores more effectively.
Server administrators running large or heavily-modded Minecraft servers should consider Folia if they are experiencing single-threaded performance limitations. The project suits servers with geographically distributed player bases or high entity counts, where spreading load across regions can meaningfully improve tick rates. Administrators should be aware that some plugins designed for single-threaded Paper may require updates to work correctly with Folia's multithreaded environment, particularly those that make assumptions about thread safety or timing. The tool is positioned as an alternative to Paper for scenarios where CPU performance is the primary constraint.
The project shows active development with regular commits addressing both new features and bug fixes. Work spans across multiple areas including region management, threading infrastructure, and API compatibility. The codebase receives ongoing refinement to handle edge cases in multithreaded execution and to maintain stability across diverse server configurations.