Mar Java Mit Java Blog

Understanding Embeddings: Converting Text into Searchable Vectors

Introduction Embeddings are a way to represent text (or other data) as dense numerical vectors that capture semantic meaning. These vectors allow us to perform tasks like similarity searches, clustering, and machine learning efficiently....

Vector vs. Collections.synchronizedList(): Understanding the Differences

In Java, developers often need thread-safe data structures to handle concurrent access. Historically, Vector was the go-to synchronized collection, but modern Java provides Collections.synchronizedList(new ArrayList<>()) as an alternative. While both provide thread safety, they...

Understanding AccessController.doPrivileged() in Java 8, 17, and 21

Introduction In Java, security and permission management have been crucial components for building secure applications. One such API that developers have relied on for decades is the AccessController.doPrivileged() method. However, with the evolution of...

Java code to bytecode to constant pool hashes

From Java Code → Bytecode → Constant Pool Hashes Code Example 🎯 Let’s take the simplest code: Java Code public class Demo { public static void main(String[] args) { Demo d = new Demo();...

Length-Prefixed Strings in Protocol Buffers — Deep Dive

Length-prefixed strings are one of the key reasons why Protocol Buffers (ProtoBuf) are smaller and faster than JSON or XML. In JSON or XML, strings are wrapped in quotes and require closing tags or...

How gRPC handles backward compatibility with proto files

The most important point about gRPC. Both Server and Client MUST have the proto file — or at least the generated classes from the proto file. Why is this necessary? Because gRPC doesn’t send...

Is Protobuf efficient for smaller keys

You’re absolutely right to think that if keys are small and values are long, Protobuf’s advantage becomes less obvious — but it still helps in most cases. Let’s break it down 🔍: Scenario Imagine...