stic
stic

Reputation: 1028

Terracotta for Python world?

Would you know if something similar to Terracotta (in Java world) exists for Python world? Twisted ? Or something else.

Upvotes: 1

Views: 609

Answers (4)

Chris Lohfink
Chris Lohfink

Reputation: 16400

Pyro can be used similarly in python as terracotta in java

Upvotes: 1

Archer
Archer

Reputation: 5147

try to run your code with JPython and use Terracotta ;)

Upvotes: 0

Robert Christie
Robert Christie

Reputation: 20685

If you want to use something that gives you a Distributed Hashtable/Tuple Space type of implementation, Entangled seems to be a Python implementation. I'm sure there are others out there though if you google for them.

Upvotes: 0

Santi
Santi

Reputation: 4468

I think Twisted is the best alternative you can find. Let me warn you that it will give you some headaches, as it forces you to code in a completely different way. But once you understand it, it's not that hard....

http://twistedmatrix.com/projects/core/documentation/howto/index.html

Upvotes: 1

Related Questions