I'm aware that it is typically not recommended to perform any IO operations inside of a Pydantic validator (see https://github.com/tiangolo/fastapi/issues/979). However, what is not clear to me is if asyncio operations are OK to perform inside of the validator.
For example, if I have a validator that calls await redis.get()
is that going to have a significant negative performance hit?