|
|
|
|
|
by mlrtime
936 days ago
|
|
Data Storage and Compute should be separate orthogonal issues, it's not needed in this comparison. Stateful vs Stateless. Your monolith is a binary that gets distributed to hosts to perform some function. The binary has multiple entry points that can be envoked. Most calls are via internal library call. Microserverices (also stateless) have a different artifacts for each component, services call other services via a private API (often grpc/httprc). |
|