etc (2) 썸네일형 리스트형 protocol buffer 정리 protocol buffer Protocol Buffers is a free and open source cross-platform library used to serialize structured data https://en.wikipedia.org/wiki/Protocol_Buffers 데이터를 직렬화할 때 사용하는 오픈소스 라이브러리이다. 메시지 타입 정의 search request에 대한 예제 .proto 파일 syntax = "proto3"; message SearchRequest { string query = 1; int32 page_number = 2; int32 result_per_page = 3; } - SearchRequest라는 이름의 message를 정의 - message는 데이터를.. [gRPC] gRPC 간단 정리 RPC(Remote Procedure call)?? remote procedure call(RPC) is when a computer program causes a procedure (subroutine) to execute in a different address space (commonly on another computer on a shared network), which is coded as if it were a normal (local) procedure call, without the programmer explicitly coding the details for the remote interaction. RPCs are a form of inter-process communication(I.. 이전 1 다음