Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
25 results
Stop juggling scattered bookmarks and browser tabs. This companion site for the CodeGranular Mastering Java Concurrency ...
51 views
2mo ago
Have you ever wondered how ConcurrentHashMap handles millions of operations per second without collapsing under the ...
108 views
1mo ago
In the first two parts of this series, we covered the core atomic classes for single values, arrays, and field updaters. But there are ...
181 views
3w ago
Ever wondered how tech giants like Uber, LinkedIn, and Rubrik handle millions of scheduled tasks? In this video, we go beyond ...
281 views
6mo ago
If you're preparing for Low Level System Design interviews, there's one concurrency question that appears again and again: ...
94 views
Struggling with thread-safe Java Sets? Choosing the wrong Set implementation can lead to performance bottlenecks, race ...
32 views
8mo ago
Ever wondered how Java handles massive concurrency behind the scenes? In this deep dive, we explore Java's Deque ...
63 views
Picture this: 2 AM, your production app freezes, and it's your fault. Deadlocks are a nightmare, but Java gives you a powerful ...
134 views
4mo ago
Have you ever used synchronized just to increment a number? You might be doing more work than you actually need.
4w ago
Choosing the wrong Java List implementation can silently destroy performance or crash your application with concurrency bugs ...
41 views
Caching looks simple… until concurrency shows up. In this video, we walk through how a cache really evolves in production ...
115 views
7mo ago
Choosing the wrong Map in Java can silently kill performance or break your multithreaded code ⚠️ In this video, we deep-dive ...
346 views
Understanding Java concurrency is essential for any backend developer working with multithreading, Spring Boot, and distributed ...
283 views
9mo ago
Your Java code has a HIDDEN BUG that could cause production outages! In this video, I'll show you exactly WHY multithreaded ...
105 views
When you call shutdownNow() on an ExecutorService, you get a list of tasks that never started—but what about the tasks that were ...
33 views
5mo ago
Your code can pass all tests… and still be WRONG. In this video, we deeply explain Thread Safety & Synchronization in Java ...
37 views
Stop losing log messages when your Java application shuts down! In this video, we tackle a common but critical concurrency ...
Do you really need synchronized blocks and heavy locks to write thread-safe Java code? In this deep-dive, I break down how ...
34 views
RejectedExecutionException got you down? The built‑in saturation policies either throw, discard, or run the task in the caller ...
91 views
Ever booked a flight online and watched that spinner spin forever? That frustrating delay happens because your code is waiting ...
38 views