threading support in python
bayerj
bayerj at in.tum.de
Mon Sep 4 11:43:36 EDT 2006
Hi,
You might want to split your calculation onto different
worker-processes.
Then you can use POSH [1] to share data and objects.
You might even want to go a step further and share the data via
Sockets/XML-RPC or something like that. That makes it easy to throw
aditional boxes at a specific calculation, because it can be set up in
about no time.
You can even use Twisted Spread [2] and its perspective broker to do
this on a higher level.
If that's not what you want, you are left with Java I guess.
Regards,
-Justin
[1] http://poshmodule.sourceforge.net/
[2] http://twistedmatrix.com/projects/core/documentation/howto/pb.html
More information about the Python-list
mailing list