Speed Up API Calls with Java's HttpClientWhile integrating with an external service, I needed to make high-volume API calls as efficiently as possible. The service responds in under 10ms, and blocking threads would slow everything down.To solve this, I used Java's built-in HttpClient and it...Mar 31, 2025·2 min read
Sorting a List of Objects in Java: A Configurable Approach with Comparator and EnumsFeb 13, 2024·2 min read