Top "Queue" questions

A queue is an ordered, first-in-first-out data structure.

Sequencing ajax requests

I find I sometimes need to iterate some collection and make an ajax call for each element. I want each …

javascript jquery ajax design-patterns queue
How can I check whether a RabbitMQ message queue exists or not?

How can I check whether a message Queue already exists or not? I have 2 different applications, one creating a queue …

.net queue rabbitmq message-queue not-exists
awaitable Task based queue

I'm wondering if there exists an implementation/wrapper for ConcurrentQueue, similar to BlockingCollection where taking from the collection does not …

c# asynchronous queue async-await .net-4.5
Java BlockingQueue take() vs poll()

When consuming values from a Queue in an infinite loop -- what would be more efficient: 1) Blocking on the Queue …

java concurrency queue blockingqueue
MongoDB as a queue service?

I would love to hear more about real application experience witn MongoDB as a queue service, if you used MongoDB …

mongodb web queue social
Laravel 5.4 - php artisan cache:clear does not clear cache files when using 'file' cache driver

Laravel 5.4 app. CACHE_DRIVER is set to file and QUEUE_DRIVER is set to sync in .env. When I run …

php caching laravel-5 queue laravel-artisan
Selecting specific object in queue ( ie peek +1)

if Peek returns the next object in a queue, is there a method I can use to get a specific …

c# queue peek
Queue ForEach loop throwing InvalidOperationException

I haven't used Queues<T> to any real degree before, so I might be missing something obvious. I'm …

c# .net silverlight queue invalidoperationexception
jQuery toggle on mouseover - prevent queue

I have the following code which toggles the visibility of a div when another div is moused over. It works …

jquery queue toggle onmouseover
how to find number of elements in a Circular Queue

how do i find the number of items in a circular queue? |front - rear| doesnt always work. is there …

queue circular-list