Archived

This forum has been archived. Please start a new discussion on GitHub.

Disable marshalling

Hello,

I would like to know if it is possible of disable marshalling to improve the performances when we use identical machines.

Cheers

Comments

  • marc
    marc Florida
    Do you mean to just memcpy() the raw data structures? No, this is not possible in Ice. This would only work if you have identical machines, the same programming language, and the same compiler. Since Ice focuses on heterogeneous environments (with different architectures, operating systems, and programming languages), we do not have such a feature.
  • I want to say: send data without to have to worry about the heterogeneousness (OS, endianess)
  • marc
    marc Florida
    mykael wrote:
    I want to say: send data without to have to worry about the heterogeneousness (OS, endianess)

    Yes, I understand. Ice does not provide such a feature. (If you have a commercial need for such a feature, and would like to sponsor the development, please contact us at info@zeroc.com.)
  • Thanks for your answer

    Cheers.