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
+5-3
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ Let's try to put ourselves in the author's shoes and sort out the possible busin
23
23
24
24
The above is actually processing the input data and finally outputting the cleaned data. There is a very classic asynchronous pattern for data processing: the producer-consumer pattern. So we can abstract the life cycle of data batch processing, which can be roughly divided into three phases.
@@ -33,11 +33,11 @@ Data producing is an indispensable stage, data processing and data aggregation a
33
33
34
34
Since different stages of data processing are performed by different goroutines, it is natural to consider the use of channel to achieve communication between goroutines.
0 commit comments