16 skills found
lemmy / BlockingQueueTutorial "Weeks of debugging can save you hours of TLA+". Each git commit introduces a new concept => check the git history!
conversant / DisruptorDisruptor BlockingQueue
RobAustin / Low Latency Primitive Concurrent QueuesLow latency, lock free, primitive bounded blocking queues backed by an primitive arrays such as an int[]. These classes mimic the interface of BlockingQueue, they work with primitive rather than Objects so are unable to actually implement the BlockingQueue. They take advantage of the Unsafe.putOrdered<X>, which allows the creation of non-blocking code with guaranteed writes. These writes will not be re-orderd by instruction reordering. Under the covers they use a faster store-store barrier, rather than the the slower store-load barrier, which is used when doing a volatile write. One of the trade off with this improved performance is we are limited to a single producer, single consumer.
joekain / BlockingQueueA blocking queue written in Elixir.
EspoirX / OptimusAsyncTask基于 kotlin Channel 的优先级异步任务队列
theodesp / BlockingQueuesSimple, performant, goroutine safe queues, useful as resource pools or job queues.
marso329 / BlockingQueueSimple Blockingqueue I have used in many projects
billdueber / Jruby ThreachJRuby-specific threaded each using java blockingqueue
mardambey / Jedis ToolsSome tools and helpers for Jedis (implements SortedSet, Map, and BlockingQueue Java interfaces on top of Redis).
Wu-GQ / MessageQueue通过阻塞队列和延时队列,实现在非延时情况以及延时情况下的生产者消费者模式
datanerds-io / VerteilerMeine dispatcher says there's something wrong mit deine Kabel. Java 8 BlockingQueue Kafka Consumer with automatically maintained offset.
itning / BigData学习大数据的练习和笔记
caoyj1991 / Core JavaIO, NIO, Lock, BlockingQueue, Synchronized
AnthonyJPerez / BlockingQueueA thread-safe implementation of a queue that blocks a thread on push if the queue is full, and optionally blocks a thread on pop if the queue is empty.
arpit20adlakha / Producer Consumer Pattern JavaThis repo contains examples to explain the producer consumer pattern in java using the BlockingQueue
ChedySmaoui / Queues And Thread SafetyIn this practical I wrote an array-based implementation of a dynamically-chosen fixed-size generic Queue in C, and a thread-safe, blocking queue.