Skip to content

CAT 049

unurgunite edited this page Jul 11, 2026 · 3 revisions

CAT-049 — Thread.new → spawn

Field Value
Severity warning
Confidence high
Auto-fix

Thread.new → spawn — Use Crystal's spawn (fiber-based concurrency) instead of Thread.new for lightweight concurrency.

Bad code

Thread.new { do_work }

Clone this wiki locally