DevOpsJava/JVMTechnology

Sharing the Load: Cache Clustering with Hazelcast

In my earlier blog on Caching: What, Why and How with Hazelcast we have discussed about the importance of software caching and how to implement it with Hazelcast. In this blog, we are going to discuss the importance of distributed caching and how to configure Hazelcast to be a full TCP/IP cluster. What is Cache clustering? A cache cluster is […]

Bijoy Paul
Bijoy Paul
Read

Java/JVMTechnology

Caching: What, Why and How with Hazelcast

In modern user facing and real-time applications, performance is the top concern with usually having data at its core. What if you were able to offload some work from the database and at the same time increase the performance and response times of your application? Most of the time data handling is done by relational databases […]

Bijoy Paul
Bijoy Paul
Read

Java/JVMTechnology

#Hazelcast : Enhance throughput of Java apps performance by optimization of object deserialization and distributed query

Hazelcast is a popular solution for In-Memory Data Grid that is often used with Databases in order to improve performance of applications, to distribute data across servers, clusters and geographies and to manage very large data sets. Here’s a quick reference to integrate hazelcast with grails  . Since Hazelcast is a distributed system, we need to put serialized […]

Bijoy Paul
Bijoy Paul
Read

Technology

Getting started with Hazelcast using Grails in 10 minutes

In computing, Hazelcast is an open source in-memory data grid based on Java. This blog will help you to tune the performance of your Grails application using Hazelcast. Integrating Hazelcast with Grails Step 1: Setup Hazelcast server using server.sh (Packaged within Hazelcast zipped bundle): Download the Hazelcast .zip from this link http://hazelcast.org/download/ Execute server.sh from hazelcast-<version>/bin […]