Re: about daemons and IPC

2006-08-29 Thread Irmen de Jong
[EMAIL PROTECTED] wrote: > Hey people! > For the first time I'm doing a client/server application, and I'm > really confused with IPC stuff. [...] > Any suggestions? http://pyro.sourceforge.net depending on your needs --Irmen -- http://mail.python.org/mailman/listinfo/python-list

Re: about daemons and IPC

2006-08-29 Thread flupke
[EMAIL PROTECTED] schreef: > Hey people! > For the first time I'm doing a client/server application, and I'm > really confused with IPC stuff. > > I read the fastest method is shared memory, but I tryed mmap and found > it tedious for the amount of data I'm handling (which is 30K at most, > but mm

Re: about daemons and IPC

2006-08-28 Thread Gabriel Genellina
At Sunday 27/8/2006 00:01, [EMAIL PROTECTED] wrote: Hey people! For the first time I'm doing a client/server application, and I'm really confused with IPC stuff. I read the fastest method is shared memory, but I tryed mmap and found it tedious for the amount of data I'm handling (which is 30K a

Re: about daemons and IPC

2006-08-26 Thread Paul Rubin
[EMAIL PROTECTED] writes: > For the first time I'm doing a client/server application, and I'm > really confused with IPC stuff. Client-server applications are traditionally done with sockets. > I read the fastest method is shared memory, but I tryed mmap and found > it tedious for the amount of d

about daemons and IPC

2006-08-26 Thread sdistefano
Hey people! For the first time I'm doing a client/server application, and I'm really confused with IPC stuff. I read the fastest method is shared memory, but I tryed mmap and found it tedious for the amount of data I'm handling (which is 30K at most, but mmap seems to get tedious for anything bigg