Selwin Ong
Selwin Ong
@ccrvlh thanks, I'll have a look sometime in the next few days. As per usual, if there's anything that you want to upstream to the main repo, please do so...
PR welcome :)
I think it's better to keep them separate for now.
Thanks for the clear description of the problem and summary @smaccona! I saw this issue a few days ago and have been weighing the pros and cons of a few...
Pushing a job to the front of the queue is actually a supported user facing feature and you can call it with `q.enqueue(at_front=True)`. I don't think this will replace the...
@stepzhou there's a PR that attempts to address this https://github.com/nvie/rq/pull/363. If I remember correctly, the PR is only missing some tests and minor improvements. It would be great if someone...
Sure, but listing all the tasks in the queue could result in a huge log file if there are lots of queued tasks. I think simply stating that there are...
Yeah, I think this is something that we can do, but we should limit the output to ~100 tasks or so. Feel free to open a PR for this :)
I’m willing to accept a PR for this, more statistics and information will improve RQ’s usability and maintanability. I personally wanted a feature that lists how many jobs of X...
So the idea is to have output similar to this: * `send_email`: 5 jobs * `crawl_url`: 10 jobs * `path.to.generate_report`: 2 jobs How do `types` get added to this list?...