CurseForge · Minecraft mod
Create FastTrack
A tiny standalone Forge 1.20.1 mod that fixes a performance hot-spot in Create's railway code by applying the track-network flood-fill optimisation to the published Create mod.
Quick answer
Which Create FastTrack release should I use?
Create FastTrack trackfastrack-1.0.0.jar targets 1.20.1 with Forge. The project page does not say whether this file belongs on the client, dedicated server, or both. All 1 required mods have matching files.
Where it goes
Is Create FastTrack required on the client, server, or both?
The project page does not say whether this file belongs on the client, dedicated server, or both.
The source does not explicitly classify this release as client-only or server-only.
What else does Create FastTrack trackfastrack-1.0.0.jar need?
trackfastrack-1.0.0.jar. Change the file and its required mods may change too.
Install Create first. We found matching files for this game-version and loader setup.
We only count dependency files that match this setup. A file for another loader does not fill the gap.
Before you install it
Add Create FastTrack without breaking your instance.
Built for Create FastTrack trackfastrack-1.0.0.jar. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use trackfastrack-1.0.0.jar. It targets 1.20.1 with Forge; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
Install Create first. We found matching files for this game-version and loader setup.
- 03
Put it on the correct side
The project page does not say whether this file belongs on the client, dedicated server, or both.
- 04
Pick the file you checked
Use the “Get this file” button beside trackfastrack-1.0.0.jar. It opens that exact file at the source.
About this project
What does Create FastTrack add?
TrackFastRack
A tiny standalone Forge 1.20.1 mod that fixes a performance hot-spot in Create's railway code by applying
the track-network **flood-fill optimisation** to the published Create mod — no forked Create needed.
The problem
Whenever a track is placed or broken, Create's TrackGraph#findDisconnectedGraphs runs a connected-component
flood fill over the entire rail network. In released Create (≤ 6.0.8) the BFS frontier is an ArrayList, and
popping from the head via ArrayList#remove(0) shifts the whole backing array on every pop — making the flood
fill O(n²).
On a large rail network (~80k nodes), a single track modification can walk **billions of elements**, causing
noticeable stutter and lag spikes while building or rerouting long train lines.
The fix
This mod injects a single Mixin that replaces the frontier with an ArrayDeque (poll() is O(1)) and swapsstream().findFirst() for a plain iterator, turning the flood fill into **O(n)**. The change is a faithful port
of Create fork commit 272e97604 ("Optimise train network hot paths").
Verify it's working
On game start the mod logs TrackGraph flood-fill self-test OK, proving the optimised method bound correctly at
runtime.
Project description from CurseForge.
Pick your setup
Create FastTrack by Minecraft version and loader
Choose the version and loader you play, then open the matching release.
1.20.1
1 loader buildCheck the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
Create FastTrack versions and loaders
trackfastrack-1.0.0.jar
8 Aug 2026
Looking for an older file? The official CurseForge project page is in Resources.