Task Queue Systems: A LeetCode Example
A task queue system is used when we want to run some time-consuming task asynchronously outside of the request-response cycle of the application.
Let's take an example of how a solution is executed on Leetcode and the result is shown:-
When we run ou...
jaspreetsh.hashnode.dev2 min read
Hardeep Singh
Great insight about queuing. Recently did a project where recording live video, sending chunks to kakfa consumers and process it. So once the user end’s recording he already have all his content, analysis without waiting, queuing can be very handy when needs to do parallel processes on same data without worrying about losing runtime speeds.
Keep posting these. Kudos to your great writing.