Hazelcast – Common Pitfalls & Performance Tips
Hazelcast Queue on single machine Hazelcast queues are stored on a single member (along with a backup on different machines). This effectively means the queue can hold as many items…
Hazelcast Queue on single machine Hazelcast queues are stored on a single member (along with a backup on different machines). This effectively means the queue can hold as many items…
InDesign offers a lot of flexibility when it comes to aligning objects. There are two ways in which you can align objects with respect to each other – one is…
Hazelcast supports the addition of listeners when a given collection, for example, queue, set, list, etc. is updated. Typical events include entry added an entry removed. Let's see how to…
MapReduce is a computation model which is useful for data processing when you have lots of data and you need multiple machines, i.e., a distributed environment to calculate data. It…
A style resource defines the format and look for a UI. A style can be applied to an individual View (from within a layout file) or to an entire Activity or application…
Hazelcast provides multiple ways to monitor the cluster. We will look into how to monitor via REST API and via JMX. Let's first look into REST API. Monitoring Hazelcast via…
Hazelcast supports an easy way to integrate with the Spring Boot application. Let's try to understand that via an example. We will create a simple API application that provides an…
Events are a useful way to collect data about a user's interaction with interactive components of Applications. Like button presses or screen touch etc. The Android framework maintains an event queue…
Hazelcast is ideally used in an environment where data/query are distributed across machines. This requires data to be serialized from our Java objects to a byte array which can be…
SOAP is not tied to any transport protocol. SOAP can be transported via SMTP, FTP, IBM's MQSeries, or Microsoft Message Queuing (MSMQ). SOAP specification includes details on HTTP only. HTTP…