Replies: 1 comment
-
Hi @leisun124, thanks for using Fast DDS. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
with data topic idl like this:
struct myData
{
unsigned long len;
octect message[1024];
}
The message size can be really small. say 10 bytes, but fast-dds always serialize the entire 1024 bytes to network, isn't it? I can't use sequence octet, as that translated to std::vector<uint8_t> , and I can't use zerocopy since the data type is not plain anymore.
Any idea to improve to get best performance?
THank
Lei
Beta Was this translation helpful? Give feedback.
All reactions