Design
grid.txt
Associated article: Grid Computing & the Linda Programming Model
Tags: Web Development Design
Published source code accompanying the article by Rob Bjornson and Andrew Sherman in which they compare Web services to the Linda programming model provides a number of advantages for building Grid applications.
Grid Computing & the Linda Programming Model
by Rob Bjornson and Andrew Sherman
Example 1:
(a)
worker()
{
RESULT r;
TASK t;
while (1) {
ts.in("task", ?t);
transaction(ts);
r = compute_task(t);
ts.out("result", r);
commit(...


