Rob Moore

Results 20 comments of Rob Moore

Seems like this issue (and its associated PR) has been idle for a while. Any chance this might be incorporated soon?

I noticed that the docs suggest that when using the cache in an async context, one should use `run_in_executor` like this: ``` loop = asyncio.get_running_loop() future = loop.run_in_executor(None, cache.set, key,...

Thanks, Grant. I'm probably missing something here, but both of them occur in an async function. I thought the purpose of wrapping the call to the cache in `run_in_executor` was...

If I understand correctly, the use of `run_in_executor` is still desirable since `set` is a blocking call. There's an example in the Python docs that shows a similar case of...

I've created an implementation for my own use in [Kotlin](https://github.com/robmoore/ratelimit4j-redis-concurrentrequest/blob/master/src/main/kotlin/org/sdf/rkm/redisConcurrentRateLimiter.kt). Suggestions welcome.

We're running into this issue today. It would be great if we could get a new release incorporating the fix. Even if a new release is imminent, folding in this...

This issue has been addressed in release 10.0.0.

Did you get an update for aiobotocore to 2.3.4 as well? In the case of the issue I was experiencing, the [fix](https://github.com/aio-libs/aiobotocore/issues/945) in aiobotocore 2.3.4 worked for me. Admittedly, the...

I've attempted unsuccessfully to populate the container first with some providers and then call `from_schema` with the intention of referencing providers outside of the schema from within the schema. The...

Any updates on this? Is there an alternative approach to closing resources in a FastAPI app?