목록protocol Buffer (1)
yoongrammer

목차Protocol Buffer 란?구글에서 오픈소스로 공개한 언어, 구조화(structured)된 데이터를 직렬화(serialization) 하는 방식입니다. 줄여서 protobuf, 더 줄여서 pb라고 부릅니다.protobuf는 여러 프로그램 언어를 지원합니다. Protocol Buffer 원리Person 이라는 객체를 JSON으로 표현하면 아래와 같습니다.{ "userName": "Martin", "favouriteNumber": 1337, "interests": ["daydreaming", "hacking"]}데이터의 크기는 공백을 제거하면 82 바이트가 사용됩니다. Person 객체에 대한 프로토콜 버퍼 스키마는 다음과 같습니다.message Person { required..
분산컴퓨팅
2020. 11. 9. 11:26