top | item 41866368

(no title)

shruubi | 1 year ago

Poor Alan Kay not even getting a mention for pioneering the basis for this idea in the design of Smalltalk.

discuss

order

macintux|1 year ago

I was comparing the concept to the Actor model as I skimmed the piece, but I don’t think there’s much overlap. What about Smalltalk correlates to cells?

chuckledog|1 year ago

According to Alan Kays 1971 description of Smalltalk:

“An object is a little computer that has its own memory, you send messages to it in order to tell it to do something. It can interact with other objects through messages in order to get that task done.”

Smalltalk concepts heavily informed the Service Oriented Architecture (SOA) tenets, e.g.

1. Services are autonomous - Cohesive single responsibility.

2. Services have explicit boundaries - Loosely coupled, owns its data and business rules.

Choosing good service boundaries is really crucial for a successful, resilient, maintainable system.

There’s a nice synopsis at https://hemantkumar.net/services-microservices-bounded-conte... (2015)

“Cells” seems like the same thing but it’s IMO a nicer word for it.