Venu Madhav Emmadivenumadhavemmadi.hashnode.dev·Nov 22, 2024Network Abstractions: Remote Procedure Calls (RPC)The foundation of effective and scalable solutions in the field of distributed systems is smooth communication between components. With the help of Remote Procedure Calls (RPC), a potent abstraction, developers can create distributed systems without ...35 readsSystem Design#Thirft
Jay Nalamblog.jnalam.dev·Nov 7, 2024Remote Procedure CallHello everyone.. Welcome to another day of exploring Web3 Engineering. We have been talking about blockchain and developing smart contracts on them for a while and also writing scripts on how to interact with the blockchain for a while. But have you ...11 likesBlockchain
OBULIPURUSOTHAMAN Kobulipurusothaman.hashnode.dev·Oct 26, 2024API - Application Programming InterfaceAPIs - Application Programming Interface APIs are used for Communications Abstraction hiding the implementation of process , ex if you hit the POST call its will go to the Server and its post the data but actually the POST doesn’t know the How its im...2 likesAPIs
Maxat Akbanovmaxat-akbanov.com·Oct 25, 2024Basics of Remote Procedure Call (RPC)Remote Procedure Call (RPC) is a powerful technique used in computer networks and distributed systems to enable a program on one computer (the client) to execute code on a remote system (the server) as if it were a local procedure call. By abstractin...35 readsdevopsDevops
Johnson awah Alfredcodemon.hashnode.dev·Oct 23, 2024gRPC Streaming Patterns1. Server Streaming RPC: Description: In this type of RPC, the client sends a single request to the server, and the server responds with a stream of messages. The client reads from this stream of responses until there are no more messages. Use Case...gRPC
Pranav Bawgikarpranavbawg.hashnode.dev·Sep 29, 2024Architectural Styles for Cloud Applications[17] Introduction Cloud computing is based on the client-server paradigm. The vast majority of cloud applications take advantage of request/response communication between clients and stateless servers. A stateless server does not require a client to ...Cloud
Harsh Kumar Raicodebyharsh.hashnode.dev·Aug 28, 2024Web3 Journey: Day 6 Highlights1. Keccak-256 Hashing Algorithm Progress: I’ve gained a solid understanding of the Keccak-256 hashing algorithm, which is fundamental to Ethereum’s security. This algorithm ensures the integrity of data by producing a unique hash value for each input...#json rpc
Adewole Caleb Erioluwacaleberioluwa.hashnode.dev·Aug 21, 2024How to Implement Data Replication and Versioning in GolangMy recent study of the replication chapter of the DDIA text was quite intense, and not so much fun since I had to process a lot of information. On the bright side, I gained practical insight into how to replicate data and why it is important in a dis...67 readsgolang
Vivektech.recrooai.com·Jul 3, 2024Why NextJs Was Our Top Choice for Building Recroo AIDeveloper experience & User experience We have been developing apps for more than a decade now. We care as much about Developer Experience as we do about User Experience. The primary reason to choose NextJs was that it is quite close to Vanilla React...10 likes·29 readsNext.js
Harshit Nagpalhungrybias.hashnode.dev·May 21, 2024Using gRPC API (Python) to make a callRequirement: Python 3.x version IDE (Suggestion VS code) pip version 9.0.1 or higher Pre-requisite knowledge: Basic understanding of RPC Basic understanding of protocol buffers What is gRPC? Imagine you want to communicate with a friend who ...10 likesApache Dubbo