[Zope-dev] ZEO client-server protocol endian-safe?
Jeremy Hylton
jeremy@digicool.com
Tue, 8 May 2001 12:21:02 -0400 (EDT)
>>>>> "AB" == Anthony Baxter <anthony@interlink.com.au> writes:
AB> Any known gotchas with running ZEO server and ZEO client on
AB> boxes of different endianness? e.g. the server running on sun
AB> solaris/sparc, while the clients are on x86 linux boxes.
AB> I'd expect it to be fine, but am feeling paranoid...
All the data that ZEO passes between client and server is marshalled
with cPickle, which uses a neutral format.
Jeremy