Are seda and the actor model essentially equivalent?
Asked Answered
H

1

6

SEDA is essentially a set of independent "services" that communicate with each other via queues, which could further be abstracted as message passing.

The actor model is a set of independent functions, which communicate with each other through message passing.

Aren't they essentially equivalent? Am I missing some key difference?

Hodges answered 14/11, 2011 at 21:16 Comment(0)
A
5

From looking at http://www.eecs.harvard.edu/~mdw/proj/seda/ (archived here), they don't seem to be. SEDA could easily be implemented over actor model, but an actor-based application doesn't need to have anything like SEDA's stages.

Amatol answered 14/11, 2011 at 22:24 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.