-
Notes on gRPC Best Practices
gRPC has become a standard for service-to-service communication. However, developers also need to pay attention to governance, such as managing proto files, handling cross-project dependencies, generating SDKs for different languages, and version control across production, development, and temporary branches. Without this, projects can quickly become disorganized and increase development time costs. In the past, we…
-
Parallelizing Self-Attention By CUDA
Github: https://github.com/mylakehead/parallel Colab: https://colab.research.google.com/drive/1TgPCIJph4UKZGDy1P48rXydKOxMfenjL?usp=sharing
-
Distributed Design of MQTT Broker

P2P Implementation: https://github.com/forgoes/bifrost Abstract—The Message Queuing Telemetry Transport (MQTT [1]) protocol is a lightweight, publish-subscribe network protocol designed for constrained devices and low-bandwidth, high-latency, or unreliable networks. An MQTT broker is a central component in the Message Queuing Telemetry Transport (MQTT) protocol, responsible for managing and facilitating communication between clients in a publish-subscribe architecture. However,…
Categories: Distributed System