Dave Smith wrote: > I already have a good marshaling method: Google Protocol Buffers. Now I > need some good software for sending messages to and from different parts > of the system.
I mentioned Twisted. If Python is out, I think I'd use libevent, which provides something like the core of Twisted in C. http://www.monkey.org/~provos/libevent/ FWIW, I dived into Google Protocol Buffers once and found it heavily geared for C++. Oddly, even the Python binding reads like C++ code. That is of course a benefit for some people. :-) Another branch of Google uses Thrift instead of Pb. I don't yet know how they compare, but this guy looked into that question: http://stuartsierra.com/2008/07/10/thrift-vs-protocol-buffers Shane /* PLUG: http://plug.org, #utah on irc.freenode.net Unsubscribe: http://plug.org/mailman/options/plug Don't fear the penguin. */
