Reputation: 1028
Would you know if something similar to Terracotta (in Java world) exists for Python world? Twisted ? Or something else.
Upvotes: 1
Views: 609
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
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