Minecraft – Does using redstone cause a slowdown when using a fill clock

minecraft-java-editionminecraft-redstoneperformance

I'm working on some logic, using fill clocks to drive my command blocks.

I usually end up having to extend my circuit, and rather than adjust the fill clock command, I usually just put in some redstone dust.

My question is, does this add more load than extending the fill clock?

I know that when making a fill clock, you must use a solid block in place of the redstone block, so that lighting updates are not triggered.

Does redstone dust trigger a lighting update when it's switched?

Best Answer

Yes it does

This article goes into quite a lot of depth on the matter but the main point is that while redstone dust does not trigger lighting updates, it does trigger redstone propagation updates, which are just as bad! Wherever possible, redstone dust should be eliminated from clock circuitry, or any circuits that are running very frequently. Use fill strips instead to power all your command blocks.