Search Articles — Sudonull

Search Results

In this project

Redis Lua Queue: partition order and worker pool

https://sudonull.com/redis-lua-queue-partition-order-and-worker-pool

Implementation of Redis queue on Lua for strict order in partitions, shared worker pool, retries. Benchmarks, diagrams, code. For middle/senior dev — study and implement.

Stacks & Queues: Cache Optimization for Performance in C

https://sudonull.com/stacks-queues-cache-optimization-for-performance-in-c

Learn how to optimize stacks and queues in C for maximum speed. Compare arrays vs linked lists, implement fast ring buffers, and reduce cache misses by 35x.

Heaps and priority queues: performance optimization

https://sudonull.com/heaps-and-priority-queues-performance-optimization

How binary and d-ary heaps on arrays provide high-speed operation of schedulers through cache locality. Practical comparisons and optimizations.

Reversing BCD4 Queue Display Protocol

https://sudonull.com/reversing-bcd4-queue-display-protocol

Analysis of BCD4 encoding and carry-checksum in the electronic queue display protocol. Python code, packet structure, web integration. For developers.

Basic RateLimiter .NET: algorithms and queues

https://sudonull.com/basic-ratelimiter-net-algorithms-and-queues

Breakdown of FixedWindow, SlidingWindow, TokenBucket and ConcurrencyLimiter in .NET. Request processing architecture, queues, Lease. For middle/senior dev. Study the implementation.

From other projects

Carlos Alcaraz defeated Sinner in the 2026 Queen's Club final

https://lrivo.com/carlos-alcaraz-defeated-sinner-in-the-2026-queen-s-club-final

Alcaraz won the ATP grass tournament in London, beating Jannik Sinner in three sets. Defended his title and gained form ahead of Wimbledon. Read match statistics and details.

From the web

QUEUE Definition & Meaning - Merriam-Webster

https://www.merriam-webster.com/dictionary/queue

1 day ago · The Latin word cauda or coda, meaning "tail," passed into French and in time ended up being spelled queue. English borrowed this word, giving it the meaning "a long braid of hair," one that …

Queue Data Structure - GeeksforGeeks

https://www.geeksforgeeks.org/dsa/queue-data-structure/

Jan 20, 2026 · A Queue Data Structure is a fundamental concept in computer science used for storing and managing data in a specific order. It follows the principle of "First in, First out" (FIFO), where the …

QUEUE | English meaning - Cambridge Dictionary

https://dictionary.cambridge.org/dictionary/english/queue

QUEUE definition: 1. a line of people, usually standing or in cars, waiting for something, or a lot of people who…. Learn more.

Queue (abstract data type) - Wikipedia

https://en.wikipedia.org/wiki/Queue_(abstract_data_type)

A queue is an example of a linear data structure, or more abstractly a sequential collection. Queues are common in computer programs, where they are implemented as data structures coupled with access …

Where To Watch Movies, TV Shows, Trailers & Reviews - Queue

https://www.queue.co/

Find out where to watch your favorite movies, tv shows, trailers, read and write reviews, create watch lists, follow your friends and more on Queue.

Cue or Queue: How to Use Them Correctly | Merriam-Webster

https://www.merriam-webster.com/grammar/cue-vs-queue-what-is-the-difference

Cue most often refers to a hint, or to a signal given to a performer. Queue most often refers to a succession of things, such as people waiting in a line.

Queue Data Structure - Online Tutorials Library

https://www.tutorialspoint.com/data_structures_algorithms/dsa_queue.htm

What is a Queue? A queue is a linear data structure where elements are stored in the FIFO (First In First Out) principle where the first element inserted would be the first element to be accessed.

Queue Data Structure and Implementation in Java, Python and C/C++

https://www.programiz.com/dsa/queue

In programming terms, putting items in the queue is called enqueue, and removing items from the queue is called dequeue. We can implement the queue in any programming language like C, C++, Java, …

Basic Operations for Queue Data Structure - GeeksforGeeks

https://www.geeksforgeeks.org/dsa/basic-operations-for-queue-in-data-structure/

Sep 23, 2025 · Queue is a linear data structure that follows the FIFO (First In First Out) principle, where insertion is done at the rear end and deletion is done from the front end.

DSA Queues - W3Schools

https://www.w3schools.com/dsa/dsa_data_queues.php

Basic operations we can do on a queue are: Enqueue: Adds a new element to the queue. Dequeue: Removes and returns the first (front) element from the queue. Peek: Returns the first element in the …

Trending Now