Description
Helps Ruby classes keep state that is local to the current fiber instead of global to the whole process. It is useful in async code where requests or tasks share the same thread but need separate context.
Fiber-local state can leak between tasks when lifecycle rules are unclear. Reset context after each request or job, and avoid storing long-lived secrets there.