Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

The tuple space distributed computing paradigm for Erlang

There are several languages that implement tuple spaces: http://en.wikipedia.org/wiki/Tuple_space

Has anyone worked with tuple spaces in Erlang as a means of module communication/message passing for distributed computing; if so, what is your experience?

like image 433
Travis Webb Avatar asked Nov 19 '25 06:11

Travis Webb


1 Answers

I may be wrong about tuple spaces, but ETS looks like it fits the definition on a node-local basis and with mnesia on top it would fit the definition in a distributed fashion. Many Erlang applications use ETS some way or the other, I might add.

If it is suitable depends on how much and how you want to store data.

like image 197
I GIVE CRAP ANSWERS Avatar answered Nov 22 '25 04:11

I GIVE CRAP ANSWERS