Exploring Hazelcast SQL Expressions: A Complete Guide for Developers
Hazelcast, Hazelcast SQL

Hazelcast SQL Queries: A Complete Example for Developers

Overview Hazelcast, a leading in-memory data grid, offers seamless integration with SQL queries, making it a powerful tool for developers who need both scalability and performance. Hazelcast SQL Query Example provides a structured way to query data stored within Hazelcast clusters, combining the flexibility of SQL with the speed of in-memory computing. In this comprehensive […]

gRPC, gRPC Protobuf

Working with Google Protocol Buffers com.google.protobuf.Timestamp and java.time.LocalDateTime

Overview In modern software development, managing date and time effectively is crucial, especially when working with distributed systems or APIs. Two common representations for date and time are Google’s Protocol Buffers (com.google.protobuf.Timestamp) and Java’s Date-Time API (java.time.LocalDateTime), also work on Convert protobuf Tiimestamp and LocalDateTime. To Convert protobuf Tiimestamp and LocalDateTime, you’ll need to handle

gRPC, Java TechARC

gRPC Bidirectional Streaming in Java: A Complete Guide

Overview gRPC is a high-performance RPC framework developed by Google, enabling efficient communication between services in different programming languages. One of its standout features is bidirectional streaming, allowing both the client and server to send a sequence of messages to each other. This guide will help you set up and implement gRPC bidirectional streaming in

gRPC

gRPC ManagedChannel with SSL/TLS: Configuration Guide

Overview gRPC ManagedChannel with SSL/TLS is the core communication channel between a gRPC client and a gRPC server. It manages the connection, load balancing, retries, and handles the lifecycle of network connections. When working with secure communications, it’s important to configure this channel with SSL/TLS for encryption and authentication. In this guide, we will explore

gRPC

gRPC Hello World Example in Java: Your First gRPC Application

Overview gRPC has rapidly gained popularity in the world of microservices due to its high performance, efficiency, and cross-language support. By using Protocol Buffers (protobuf) for data serialization and HTTP/2 for communication, gRPC offers a modern, efficient, and scalable way to build distributed systems. In this blog, we’ll walk through building your first gRPC Hello

gRPC, gRPC Protobuf

Understanding Google Protobuf Timestamp

Overview Google Protobuf Timestamp : Google Protocol Buffers (Protobuf) is a robust serialization format used to encode structured data efficiently. One of its key features is the ability to handle time with high precision using the google.protobuf.Timestamp type. This data type is essential for representing specific points in time, making it invaluable for logging events,

gRPC, gRPC Protobuf

Data Types in Protocol Buffers(Protobuf): A Complete Guide

Overview Data Types in Protocol Buffers – Protocol Buffers (Protobuf), developed by Google, is a highly efficient and language-neutral method of serializing structured data. It’s widely used in distributed systems, APIs, and communication between microservices because of its small footprint, speed, and ease of use. At the heart of Protocol Buffers are the Google protobuf

gRPC, gRPC Protobuf

Protobuf Maven Plugin for Protocol Buffers

Overview Protobuf Maven Plugin(maven-compiler-plugin), allows user to working with Google Protocol Buffers aka Protobuff in maven base Java project, and integrate the Maven Plugin build tool is a good approach. To compile protocol buffer .proto files and generate the required Java source code from compiler, user need to configure the Maven proto buffer build process

Scroll to Top