Language features, syntax, and gotchas.
Category: Language

Simplify service requests with fibers
How do you get multithreaded code right? The first step is to see if you can avoid using threads at all! The other day I was adapting an email course …

Understanding Ruby Thread-Local Variables
Global settings can cause havoc when threads are introduced. Learn when and how to use Ruby's thread-local variables instead.