Senseless events

Senseless events

Follow
homeSenseless eventsUnix IPCCheatsheetsAbout

File locking

Jul 26, 202327 views

IPC in Unix - part 4 · We are continuing our journey through Unix IPC by looking at the concept of file locking. If you want to know how multiple...

File locking

Named pipes (FIFOs)

Jul 23, 202323 views

IPC in Unix - part 3 · In the previous article we learned how to connect 2 processes using a pipe. Although interesting, that technique is limited...

Named pipes (FIFOs)

Pipes and file descriptors

Jul 22, 202325 views

IPC in Unix - part 2 · Pipes are a simple way to connect the output of one process to the input of the other one. You have probably used pipes at some...

Pipes and file descriptors

fork() and signals

Apr 27, 202353 views

IPC in Unix - part 1 · While thinking about the Producer and Consumer from the previous article, I realized I'm not that familiar with the various ways...

fork() and signals

Containerizing the Consumer

Dec 7, 202265 views

Our system currently consists of 2 .NET console applications communicating through Kafka + Zookeeper living inside Docker containers. Not bad for a...

Containerizing the Consumer

Consuming events

Dec 6, 2022102 views

We now have a way to generate events, but how do we consume them? There are various ways in which 2 processes can communicate, but we're mainly...

Consuming events