Thread
Everything on SkillVeris tagged Thread — collected across the glossary, study notes, blog, and cheat sheets.
5 resources across 2 libraries
Study Notes(3)
Thread Groups
How JMeter Thread Groups control the number of virtual users, ramp-up time, and loop behavior that drive load against your system under test.
Threading Macros
Learn how ->, ->>, some->, some->>, and as-> rewrite deeply nested Clojure expressions into readable, linear pipelines without changing runtime behavior.
Thread Lifecycle in Java
Understand the states a Java thread passes through — from NEW to TERMINATED — as defined by the Thread.State enum, and what causes each transition.
Cheat Sheets(2)
C++ Concurrency (std::thread) Cheat Sheet
Covers creating and managing std::thread objects, passing arguments safely, join versus detach semantics, and thread lifecycle pitfalls.
Java Virtual Threads (Project Loom) Cheat Sheet
Creating and managing virtual threads, structured concurrency, and pitfalls like pinning, for writing simple blocking-style concurrent Java code at scale.