honeydew icon indicating copy to clipboard operation
honeydew copied to clipboard

Job Queue for Elixir. Clustered or Local. Straight BEAM. Optional Ecto. 💪🍈

Results 18 honeydew issues
Sort by recently updated
recently updated
newest added

I was writing my own logic in front of honeydew and noticed that if I pass an option of `{reply: false}` into the `async/3` function it throws a function clause...

Besides other documentation changes, this commit includes all relevant documents to the generated HTML doc for HexDocs.pm and leverages on latest features of ExDoc.

For my use case, before placing a new job in the queue, I want to cancel all jobs in the queue with the same arguments. I can see that Honeydew...

For my use case, before placing a new job in the queue, I want to check if I am not duplicating work. So I would need to check if a...

Hi @koudelka, we are using HoneyDew in production, for our data ingestion. We are using the global Mnesia queue in a multi node setup running nightly jobs and we have...

First of all, thank you for this amazing library. It's really useful to me :100: While reading the documentation i've noticed a inconsistency. In the README.md and in the code...

Hello, This is a suggestion to make `Honeydew.Logger` a behaviour to allow custom adapters for it. The reasoning is that depending on the job nature for crash handle, you can...

Hey @koudelka! The code links for a module lead the wrong github addresses. The github link navigates to: 1 (broken link) - https://github.com/koudelka/honeydew/blob/1.4.6/lib/honeydew.ex#L1 instead of 2 (correct link) - https://github.com/koudelka/honeydew/blob/v1.4.6/lib/honeydew.ex#L1...

Hello, I created a custom mnesia queue that do some specific things to my use case. The issue is that my queue is slower than the built-in mnesia queue, so...