threads in scala

Fibers: The Fundamental Abstraction in Cats Effect 3

Reading Time: 2 minutes Fibers are the fundamental abstraction in Cats Effect, similar to threads, they represent a sequence of actions which will ultimately be evaluated in that order by the underlying hardware. Fibers are very lightweight. Since fibers diverge from threads is in their footprint and level of abstraction. In thread each step is a statement, and defined in sequence by writing them in particular order within a Continue Reading