Reactive manifesto
- The Reactive Manifesto is a document that defines the core principles of reactive systems
- This is different from reactive programming since this is about system design
- Ref: https://www.reactivemanifesto.org/
- Principles: Reactive systems must be:
- Responsive
- Resilient: Achieved by replication, containment, isolation, and delegation
- Elastic:
- Message driven
- https://www.oreilly.com/radar/reactive-programming-vs-reactive-systems/
- See also reactive_programming
Reactive System vs Reactive Programming
- Reactive System is message based
- Reactive Programming is event based
Event Driven Architecture
- What the heck is this?