Alex Katebi wrote:
> Peter,
>    I am using my own implementation. I found RPC and others too complicated
> to use and it did not give me enough control on the transport layer. I need
> my socket to be non-blocking and I am using epoll( ) which is very
> efficient.
>   
XDR is a separate specification and can be used independently of RPC. 
Python has a library for dealing with it. XDR isn't simple, but it does 
provide the ability to pass complex structures and types between 
different kinds of machines. You can even create things like linked 
lists that can be sent over the wire. If that doesn't work for you, 
there are other options like XML, which comes with it's own complexity 
and cost.

Cheers,

Peter


_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to