Pavel Kirilin

Results 318 comments of Pavel Kirilin

Hi. Sorry for long reply. Instead of using delay which is implemented using hack over AMQP, for large delays please consider using schedulers. Currently we can offer Redis scheduler as...

It does support it. You can use `delay` label for the task in order to send it delayed.

In that case, I'd suggest you to use [scheduler](https://taskiq-python.github.io/guide/scheduling-tasks.html). It supports cron schedules.

@chandr-andr, can you please check this one?

Image files are downloadable. They just have correct content-disposition. Also, videos are streamed, so you receive them chunk by chunk. Also soon the project will receive a big update and...

The easiest way would be to start using pipelines. https://github.com/taskiq-python/taskiq-pipelines ```python import asyncio from taskiq_redis import ListQueueBroker, RedisAsyncResultBackend from taskiq_pipelines import Pipeline, PipelineMiddleware broker = ( ListQueueBroker("redis://localhost:6379/0") # Here we...

Hi and thanks for creating an issue and PR. But unfortunately, currently I'm not sure about the PR and the issue. So, here's the way you can achieve desired behavior...

Different durations for tasks should not be a problem, since we execute our tasks in async way. Even if the function is sync, we use threadPool executor to make it...

Please run `pre-commit run -a` and fix tests. After you're done, please request re-review from me.