Event Based Concurrency
# What
CONCURRENT SERVERS WITHOUT THREADS
# How
select()poll()epoll()
# Why
- Pros: No Lock needed.
- Cons:
- Blocking System Calls because only one thread is running. Unlike thread based concurrency which can have another thread running while doing IO.