-
Bug
-
Resolution: Fixed
-
1.15.2, 20w19a, 1.16 Pre-release 2, 1.16 Pre-release 5, 1.16 Release Candidate 1, 1.16, 1.16.1, 20w27a
-
Confirmed
-
Performance
Powering and depowering rails that are on top of non-full cubes is 4 to 5 times laggier since 1.14 than 1.12.2 and below
"The primary bottleneck lies in shape comparison which is performed to determine whether the block beneath the rail is solid on top and can support it." - JellySquid
- 1.12.2 used a simple boolean check
- 1.13.X ¯_(ツ)_/¯
- 1.14-20w18a recalculates the hitbox of the block below the rail every time
- 20w19a-20w27a uses a simple boolean check for full cubes which decreased lag massively but still recalculates the collision box of non-fullCubes every time
- 20w28a+ Caches if the rail can stay atop the non-fullCube
Below are some testing results.
I have a void world with 10,000 rails atop top-slabs running on a 2gt observer clock
5000 rails update every gametick (half those turning on, half turning off)
16 chunk render distance, 2gb of ram for the JVM
The world ran at less than half an mspt when idle which was consistent across all versions.
Each test was done a few times to get stable results.
Version | Client | TPS | MSPT | Thumbnail |
---|---|---|---|---|
1.12.2 | Vanilla | 24.69 | 40.5 | |
1.13.0 | Vanilla | 12.23 | 81.75 | |
1.13.2 | Vanilla | >20 | <50 | |
1.14.4 | Vanilla | 5.55 | 180 | |
1.15.2 | Vanilla | 5.37 | 186 | |
1.15.2 | Lithium | 28.57 | 35 | |
20w18a | Vanilla | 4.85 | 206 | |
20w19a | Vanilla | 5.46 | 183 | |
20w19a | Lithium | 30.3 | 33 | |
20w28a | Vanilla | 30.3 | 33 |
Lithium heavily optimizes the shape comparison check:
- Simple full-cube check with early exit (which was added in 20w19a to decrease lag from rails only atop full cubes)
- Cache if the side of the block can support the rail (slabs)
World Download: Rail Slab Update Lag 1.12.zip
- relates to
-
MC-174568 Rail updates are 3-4x times laggier since 1.13
- Resolved