que
que copied to clipboard
Simple Job Processing in Elixir with Mnesia :zap:
Related to #19. - [ ] Replace Erlang's `:queue` with a priority queue data structure - [ ] Update Mnesia Table definition - [ ] Auto-migrate on update - [...
Cheers everyone! I'm having this Dialyzer warning just by implementing the `perform/1` function: ``` The pattern 'false' can never match the type 'true' ``` There's also another warning: ``` The...
Hello sheharyarn, as mentioned previously I have a forked version of your library which adds support for priority levels, sharded workers (to avoid supervisor bottlenecks), node tenancy (jobs only run...
Is there a way to let que know to ignore the :mnesia :dir config that I set for a different process? I had que working fine along with [Pow auth...
The only change introduced in this PR is commit `96e47b0` which allows a worker to override `concurrency/0` which makes workers capable of specifying their concurrency dynamically at run-time. This change...
If I have a trivial Worker i.e. it completes really fast, then sometimes it will fail, when really it is a success. Here's my worker: ```elixir defmodule NormalWorker do use...
We are trying to use Que to schedule jobs in a multi-node environment, allowing nodes to connect to each other and share mnesia information. What I'm doing: 1) Start iex...
Hello @sheharyarn, I have an phoenix app that use a lot of Que Workers to process events data. I has configured Mnesia to store the queue, every time that I...
I see this is in your roadmap. Do you think this is something you'll have in the near term (few weeks) or is this a longer-term item?