You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 30, 2019. It is now read-only.
구조체의 Put/Get을 정의할 때 현재 세 가지 방식이 있다.
array, map 타입은 msgpack에서 지원하는 배열, 키-값 타입이고, stream 타입은 서로 독립된 msgpack 데이터가 그냥 연속적으로 버퍼에 채워져 있는 식이다.
이 중 stream 타입으로 put/get을 정의한 구조체는 std::vector나 std::map에 넣을 수 없다.
vector와 map은 각각 array type, map type으로 직렬화하기 때문이다.
이를 위한 해결책은 현재는 없어 보인다.
차선책으로는 두어가지 아이디어가 있는데,
썩 좋은 대안들은 아니지만 그래도 2번이 개중 가장 나을 듯. 우선 IDL 구현 후 생각해보자.
The text was updated successfully, but these errors were encountered: