Pavel Kirilin
Pavel Kirilin
@CurstinJR, yes, you are correct. Will update soon.
It's kinda not, but I highly advise you doing so.
Hi! Thank you for creating an issue here. I don't believe it's possible due to the design of the library itself. Let me explain. We have two components that should...
Oh, actually, after re-visiting the problem, I guess we can create some kind of wrapper around brokers that will lazy-load all of required configuration parameters. I'll look into it soon.
As a reference for wrapping up a broker, you can take a look at [SharedBroker](https://github.com/taskiq-python/taskiq/blob/master/taskiq/brokers/shared_broker.py) implementation. I will look into your solution a bit later today.
Are you sure that you run it with only one worker process? Most probably you are starting multiple worker processes and they all have this semaphor, therefore number of tasks...
I'm not sure of it's even possible. Most probably the reason is in something else. Can you tell me what you did?
Seems like you use windows. Sometimes it can install programs automatically. In fastapi_template we don't install poetry automatically. https://github.com/s3rius/FastAPI-template/blob/master/fastapi_template%2Ftemplate%2Fhooks%2Fpost_gen_project.py#L64 We just use existing installation. I suspect that windows tried to...
Mocked tests are generally a bad idea. Because you want to be sure that everything you write will run on an actual database. Sometimes databases might behave not as you...
I don't think it's necessary. At least for now. Because valkey and other technologies as a [KeyDB](https://docs.keydb.dev/) are basically drop-in replacements for redis. The taskiq-redis is not affected by this...