Re: [capnproto] Performance of iterating through List vs. raw Data

2019-08-15 Thread Philipp Wissmann
Hi Kenton Thanks a lot for this amazingly fast reply and the explanations. We might try the direct pointer approach and it's very useful to know this possibility but for now I think having the data in a Data member seems to be working. Cheers! Philipp On Tuesday, August 13, 2019 at 7:43:08

[capnproto] Performance of iterating through List vs. raw Data

2019-08-13 Thread philipp . wissmann
Hi We used Cap'n Proto to serialize data in a shared memory environment and defined some message types as structs containining List, i.e. struct Message{ points @0 List(Vector3f) }; Where Vector3f is another struct containing either 3 floats or a List(Float32). However, extracting the Vecto