Jeremy

@activeruser
4 Followers
53 Following
87 Posts
Share my views on the world
#linux process management commands ⌨️
#kotlin 2.1 announces an interesting feature called "when guards," which adds to the when-with value. Guards allow additional checks to be made using the if keyword. 👇
New Server Checklists

🔹 Linear Jitter Backoff
Linear jitter backoff modifies the linear backoff strategy by introducing randomness to the retry intervals. This strategy still increases the delay linearly but adds a random "jitter" to each interval.

Advantages: The randomness helps spread out the retry attempts over time, reducing the chance of synchronized retries across instances.

Disadvantages: Although better than simple linear backoff, this strategy might still lead to potential issues with synchronized

🔹 Linear Backoff
Linear backoff involves waiting for a progressively increasing fixed interval between retry attempts.

Advantages: Simple to implement and understand.

Disadvantages: May not be ideal under high load or in high-concurrency environments as it could lead to resource contention or "retry storms".

How do we retry on failures?

In distributed systems and networked applications, retry strategies are crucial for handling transient errors and network instability effectively. The diagram shows 4 common retry strategies.
#linux #programming

HTTP Status Code You Should Know.

The response codes for HTTP are divided into five categories:

Informational (100-199)
Success (200-299)
Redirection (300-399)
Client Error (400-499)
Server Error (500-599)
#linux #webdev

Linux Filesystem
#meme #linux #cat