#
queues
Here are 335 public repositories matching this topic...
neko-kai
commented
Jul 12, 2020
CE have released their own take on tracing, with following notable changes compared to original ZIO Tracing:
- Instead of parsing lambdas, CE throws exceptions in IO constructors and cleans up stacktraces. That also means there is no regional control of tracing and AFAIK no way to avoid slight overhead even when tracing is completely disabled – but OTOH it may probably work on Scala.js
- Trace
discussion
benchmark
awesome
experimental
concurrency
lock
data-structures
offer
lock-free
queues
wait-free
spsc
jctools
-
Updated
Aug 9, 2020 - Java
A consolidated collection of resources for you to learn and understand algorithms and data structures easily.
algorithm
linked-list
sort
data-structures
bubble-sort
sorting-algorithms
interview-practice
interview-questions
big-o
dynamic-programming
quicksort-algorithm
stacks
knapsack-problem
greedy-algorithm
queues
merge-sort
linear-search
-
Updated
Jul 23, 2019
python
search
c-plus-plus
algorithms
graphs
strings
cracking-the-coding-interview
recursion
sorting-algorithms
arrays
dynamic-programming
trees
stacks
queues
-
Updated
Aug 14, 2020 - C++
AlexVanderbist
commented
Apr 10, 2020
As Queue::hasPushed(QueueableActionJob::class)
wont work, it might be nice to include some assertions out of the box?
public function actionJobWasPushed(string $actionJobClass): bool
{
$this->assertTrue(Queue::getFacadeRoot() instanceof QueueFake, 'Queue was not faked. Use `Queue::fake()`.');
return collect(Queue::pushedJobs()[ActionJob::class] ?? [])
Data-Structures using C++.
hashing
data-structure
linked-list
graphs
bloom-filter
trie
hash
recursion
data-structures
binary-search-tree
string-manipulation
binary-tree
binary-trees
bst
trees
stacks
heaps
queues
leaf-nodes
trie-template
-
Updated
May 29, 2020 - C++
Beanstalkg is a go implementation of beanstalkd - A fast, general-purpose work queue
-
Updated
Dec 5, 2019 - Go
srsandy
commented
Jul 10, 2019
DSA-Self Paced With Doubt Assistance Course Solutions in Python (Python 3)
linked-list
algorithms
graph-algorithms
recursion
backtracking
data-structures
sorting-algorithms
arrays
dynamic-programming
hashtable
bst
trees
searching-algorithms
greedy-algorithms
stacks
heaps
queues
branch-and-bound
divide-and-conquer
subract-and-conquer
-
Updated
Aug 10, 2020 - Python
An Amazon SQS client that supports creating lightweight, automatically-deleted temporary queues, for use in common messaging patterns such as Request/Response. See http://aws.amazon.com/sqs.
-
Updated
Jul 15, 2020 - Java
nodejs
workflow
automation
engine
workflow-engine
scheduler
jobs
process
orchestration
workflow-automation
queues
job-orchestration
queuing-system
-
Updated
Jul 28, 2020 - JavaScript
Custom Apex queue to process arbitrary work on existing SObject in a guaranteed order.
-
Updated
Jun 22, 2019 - Apex
InterviewBit Programming Solutions
hashing
linked-list
math
cpp
solutions
graph-algorithms
maps
array
backtracking
binary-search-tree
tree-structure
dynamic-programming
greedy-algorithms
stacks
heaps
queues
interviewbit
two-pointers
bitmanipulation
-
Updated
Jun 18, 2020 - C++
Lightweight, thread-safe, blocking FIFO queue based on auto-resizing circular buffer
-
Updated
Feb 4, 2019 - Go
Generic queues with adapter support for Elixir
-
Updated
Oct 31, 2019 - Elixir
Queue is a generic interface to abstract the details of implementation of queue systems.
-
Updated
Apr 27, 2020 - Go
-
Updated
Jul 28, 2020 - Ruby
Data Structures & Algorithms Implementation in Python
-
Updated
Apr 4, 2017 - Python
Yii2 Queue Manager (Analytic & Monitor)
yii2
queue
analytics
yii2-extension
queues
yii2-queue
yii2-modules
queue-manager
queue-monitor
queue-analytics
-
Updated
Aug 18, 2020 - PHP
ngx_lfqueue is the queue which share memory across multiple threads and multiple worker without any lock!!
-
Updated
Sep 21, 2018 - C
light weight, high performance, simple, reliable and persistent queue for Java applications
-
Updated
Jun 24, 2020 - Java
GeeksForGeeks, HackerEarth, Coding Tests and Several Other platforms - Data Structures, Algorithms Implementations in Python
linked-list
algorithms
graph-algorithms
strings
competitive-programming
data-structures
matrices
sorting-algorithms
heap
hackerearth
trees
stacks
coding-challenge
queues
geeksforgeeks-solutions
techgig
geeksforgeeks-python
daily-coding-problem
interviewing-io
coding-platform
-
Updated
Aug 23, 2020 - Python
A playground for learning DataStructures, Algorithms and Object Oriented Concepts.
python
c
java
linked-list
stack
algorithms
matrix
es6-javascript
recursion
data-structures
sorting-algorithms
arrays
interview-questions
searching-algorithms
queues
circular-linked-list
javascript-algorithms
-
Updated
Jul 20, 2020 - Java
PHP microframework for robust API development with CQRS
-
Updated
Jul 10, 2020 - PHP
A little command line tool for clearing Laravel Redis queues.
-
Updated
Oct 18, 2019 - PHP
Improve this page
Add a description, image, and links to the queues topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the queues topic, visit your repo's landing page and select "manage topics."
steps to reproduce
Write a loop, from 1 to 80000, each time add a random int to the max heap.
In theory it takes very little time(NlogN, N=80000, <1sec ), but the program does take a long time.
I'v also tested the BinaryHeap in https://github.com/SolutionsDesign/Algorithmia, it performs well, so it is probably due to the bad algorithm.