© 2023 Hashnode
#queue
Hi guys, Another sharing today but really cool topic for backend guys out there 😉 I'll share with you the Event Stream and what are the benefits of it. And it could be your next awesome tool besides …
A queue is an important Data Structure with real-world usage. It is similar to a Stack but different in terms of implementation and application. This blog will introduce you to queue, its logical repr…
Hi guys, Using Laravel is super cool. A lot of built-in stuff that we can use for our mission-critical apps. Help us a lot in our app development, right? One of the things from Laravel - Queue, is sup…
Data Structure and Algorithms (DSA) are two main computer science concepts that help to organize data efficiently. Data structure refers to the way the data is stored in the memory. The main idea behi…
The queue data structure is the data structure that offers First in First out (FIFO) behaviour and also the insertion, deletion and reading of the element at a constant time(O(1)). We can implement th…
Queues are one of the most fundamental data structures in computer science, used for many purposes ranging from managing network packets to controlling the flow of processes in a computer. In this blo…
Recently I experienced something that you usually hear about when going through resources around cloud and distributed systems, which is everything fails and you need to plan for it. This doesn’t just mean infrastructure failure but also so…
What is RabbitMQ and why is it relevant? RabbitMQ is a tool that helps computers talk to each other. Imagine that you want to send a message to your friend across the street. You could yell the messag…
Concurrency and complexities In general computer science, concurrency means two or more tasks (similar or different) happen in parallel, which consists of contention for access to resources. The conte…
⚠ Disclaimer This blog is focused on the situation when you need to handle a low number of users to access your AI models, like in a hackathon or a prototype of a product which may not be accessed by …