Author name: Rajkumar ANGARE

Hey Techie, Welcome to our tech learning portal Java Tech ARC 3i, our aim is 3i(Inspire, Innovate and Integrate), hope your search ends here for detailed learning and coding sample you are looking for. I am Rajkumar ANGARE, I have over 16 years of experience in IT industry, having worked in multiple technology e.g. Java, Microservice, Hibernate, Hazelcast and related tech stacks. Day to day I do search and learn about technology, new concepts and hands-on.

Hazelcast

Understanding of Hazelcast QueueStore

Hazelcast is well known for its in-memory data and platform, which include various distributed data structures such as maps, sets, and queues. Among these, Hazelcast’s distributed queues offer a strong mechanism for managing data and messages across a cluster of nodes. To enhance the performance of these queues, Hazelcast provides an important interface called Hazelcast QueueStore, […]

Understanding Hazelcast MapLoader
Hazelcast

Understanding Hazelcast MapLoader

What is Hazelcast MapLoader? Hazelcast distributed map implementation is an in-memory data store, but it can be backed by any type of data store such as RDBMS, OODBMS, NOSQL, or simply a file-based data store. MapLoader implementation provides feature to load data from external filesystem or storage to Hazelcast in-memory map. Normally returns the value

Understanding of Hazelcast MapStore
Hazelcast

Understanding of Hazelcast MapStore

What is Hazelcast MapStore? Hazelcast MapStore and MapLoader is an interface API to build a cache on Hazelcast. To build a cache, you can either use a pre-built component, which requires little or no coding. Or, you can use a custom option that allows you to write the interface yourself. Hazelcast is in-memory data store,

Hazelcast

How to Start Hazelcast Members and Client?

Overview Hazelcast is an in-memory data grid enabling developers to create highly scalable and distributed applications. The initial step to forming a cluster of nodes that can store and process data in-memory is to start a Hazelcast member (node) and a client. This article will discuss how to start Hazelcast members and clients and how

Java Naming Conventions Rules: A Learning Guide
Java Beginner, Java

Java Naming Conventions Rules: A Learning Guide

Overview Java is one of the most popular programming languages in the world, and its success owes much to its consistency and readability. A key part of achieving this consistency is following standard Java naming conventions rules. These conventions aren’t enforced by the compiler, but they are highly recommended for writing clean, maintainable code that

Java Beginner, Java

Java Hello World Program: What is It?

Overview “Hello World!” is a basic program which display one liner of message Java Hello World!. This is the perfect program for beginners, it explain basic understanding of java concepts like syntax, structure and how to run the program. In this article, we’ll walk you through creating your very first Java program. Let’s dive in!

Java, Java Beginner

How to Set Java Classpath?

Overview To Set Java Classpath, the classpath in Java is a crucial concept, as it tells the Java Virtual Machine (JVM) and Java compiler where to find class files and packages. If you’re developing Java applications, you’ll often need to set the classpath to ensure that your programs run correctly. This blog will guide you

How to Install Java: A Complete Step-by-Step Guide
Java Beginner, Java

How to Install Java: A Complete Step-by-Step Guide

Overview Java is one of the most well known application programming language all around the world, utilized in all the frontend and backend application and frameworks. For Example Spring, Hibernate, EJB etc. Whether you are new learner to programming or an experienced developer, introduction and installation Java is the initial step to building and running

Scroll to Top