dinesh Archive
Today we will discuss how to send emails from your Java app. In general, you have two main options: either use the native built-in functionality or try some external packages. Java provides a quite comprehensive …
In this article, we will discuss how to create a Data Structure with Insert, Delete and GetMostFrequent operations of O(1). This Data Structure will proform Insert, delete, and get the most frequent item in the …
In this article, we will discuss how to design and implement a Least Frequently Used (LFU) cache in Java to get fast fetching and updating items. This LFU cache discards the least frequently used items …
In this article, we will discuss how to design and implement an LRU cache algorithm in Java to get fast fetching and updating items. This Least Recently Used (LRU) discards the least recently used items …
In the article, we will discuss how to implement a microservice registry with Eureka. The microservice registry is a database of the instances of the microservices. It stores its locations. The instances of the service …
Hello readers, my title “Designing Applications with Spring Boot 2.2 and React JS” has been published by BPB Publication in Jun 2019. This book designed for the developers and architects, who want to design an …
In this article. we will discuss Microservice Discovery Patterns and Registry in the Microservice architecture. We will see how to register and discover services. In the series of Microservice architecture tutorial, we have discussed a …