You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,13 @@ This package will provide you for the classes necessary to build:
28
28
-**The Producer**: code that sends the Event to a Queue by serializing the Event. This happens synchronously.
29
29
-**The Consumer**: code that reads in the background, therefore asynchronously, reads and unserializes the Event from the Queue and passes it to the EventBus to do the heavy lifting.
30
30
31
+
32
+
## Why?
33
+
34
+
It's all about deciding which command logic can be delayed, or hidden away in order to make it faster. And this is what we want to do.
35
+
36
+
**You never remove a bottleneck, you just move it.** The downside is that we might have to assume a possible delay.
37
+
31
38
## Installation
32
39
33
40
In order to start using this project you require to install it using [Composer](https://getcomposer.org):
0 commit comments