Earlier quoted context omitted.
Even the heroes eventually capitulate to complexity in C++, compromising performance. It is usually dead simple. Reserve memory in a vector, put data in, loop through it linearly. Modern C++ is very simple most of the time. Where are you getting this idea? It is virtually impossible to write a realistically complex zero-copy RPC server in C++ because the lifetime issues are too daunting. This is not only untrue, it d…
> Reserve memory in a vector, put data in You've already proven that you don't know what I am talking about and now you are doubling down. There is no way to put data into a std::vector without copying it. Vector can't adopt memory that already exists. So your plan doesn't suit the use case I am discussing: zero-copy RPC servers.
You said "zero-copy RPC servers" (for some reason) but never gave any evidence of what you are saying or explained it technically in any way.
I'll ask again, show me what is being done in java that can't be done in C++. Show me technically, prove what you are saying.
I know how these conversations usually go. It's mostly the other person trying anything they can to not give evidence of what they're saying.