Tag

Custom Protocol

0 views collected around this technical thread.

JD Tech
JD Tech
Aug 1, 2024 · Backend Development

Overview of RPC and How to Build a Custom RPC Framework Using Netty

This article explains the fundamentals and key characteristics of Remote Procedure Call (RPC), outlines common use cases and popular frameworks, and then walks through the design and implementation of a simple custom RPC system—including a bespoke binary protocol, client‑side proxy generation, serialization, Netty‑based encoding/decoding, server‑side request handling, and result delivery—using Java and Netty.

Backend DevelopmentCustom ProtocolDistributed Systems
0 likes · 21 min read
Overview of RPC and How to Build a Custom RPC Framework Using Netty
Cloud Native Technology Community
Cloud Native Technology Community
Aug 9, 2022 · Cloud Native

How to Develop a Custom Protocol for a Service Mesh Using Aeraki and MetaProtocol Proxy

This tutorial explains how to create a custom seven‑layer protocol for a service mesh by leveraging Aeraki Mesh and MetaProtocol Proxy, covering codec implementation, workspace configuration, compilation steps, and Kubernetes/Istio resources to enable traffic management for protocols like Dubbo and Thrift.

AerakiCloud NativeCustom Protocol
0 likes · 9 min read
How to Develop a Custom Protocol for a Service Mesh Using Aeraki and MetaProtocol Proxy
Code Ape Tech Column
Code Ape Tech Column
Apr 16, 2022 · Backend Development

Design and Implementation of a Custom RPC Framework with Spring Boot and Netty

This article presents a comprehensive overview of designing and implementing a custom RPC framework using Spring Boot and Netty, covering concepts, architecture, service registration with Zookeeper, load balancing, custom message protocol, serialization, handling TCP fragmentation, and various client invocation modes.

Custom ProtocolLoad BalancingNetty
0 likes · 14 min read
Design and Implementation of a Custom RPC Framework with Spring Boot and Netty
Top Architect
Top Architect
Jul 24, 2020 · Backend Development

Implementing a Custom Protocol with Netty: Design, Encoding/Decoding, and Heartbeat

This article explains why a custom TCP protocol can be more efficient than HTTP, defines the protocol header and body format, and demonstrates a complete Netty implementation—including message classes, encoders/decoders, resolver factories, server‑client bootstraps, and a Ping/Pong heartbeat mechanism—complete with runnable Java code and sample output.

Custom ProtocolMessage EncodingNetty
0 likes · 15 min read
Implementing a Custom Protocol with Netty: Design, Encoding/Decoding, and Heartbeat
Architecture Digest
Architecture Digest
Jul 19, 2020 · Backend Development

Implementing a Custom Protocol with Netty: Design, Encoding/Decoding, and Heartbeat

This article explains why a custom protocol can be more efficient than HTTP for service-to-service communication, defines a simple binary protocol with header and body, and demonstrates a complete Netty implementation—including message classes, encoders/decoders, resolvers, heartbeat handling, and client/server examples.

Custom ProtocolMessage EncodingNetty
0 likes · 18 min read
Implementing a Custom Protocol with Netty: Design, Encoding/Decoding, and Heartbeat