-
gRPC Performance Best Practice의 C++ - Enable write batching in streams프로그래밍/기록, 개념, 용어 2022. 9. 27. 02:27반응형
Performance Best Practices | gRPC
에서 아래 부분이 무슨 말인지 잘 이해가 가지 않았는데,
- (Special topic) Enable write batching in streams if message k + 1 does not rely on responses from message k by passing a WriteOptions argument to Write with buffer_hint set:
stream_writer->Write(message, WriteOptions().set_buffer_hint());
WriteOptions::set_buffer_hint() 멤버 함수의 주석을 보니 아래와 같이 되어있었다.
Sets flag indicating that the write may be buffered and need not go out on the wire immediately.
버퍼링을 해도 괜찮은 메세지의 경우, 버퍼링 하는 옵션이었다.
반응형'프로그래밍 > 기록, 개념, 용어' 카테고리의 다른 글
C# - ArrayPool, MemoryPool (0) 2022.10.13 동시성 토큰 (0) 2022.10.02 유니티에서 Nuget 이용하여 gRPC, Protobuf 패키지 설치 (0) 2022.09.24 Docker 컨테이너에서 로컬 Windows 호스트 위 SQL Server에 접근하기 (0) 2022.08.28 프로토콜 버퍼 (1) 2022.08.27 - (Special topic) Enable write batching in streams if message k + 1 does not rely on responses from message k by passing a WriteOptions argument to Write with buffer_hint set: