You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PyMongo is blocking, and is thus incompatible with FastAPI, which is asynchronous. Any long-running queries running in a single endpoint will block every other operation until it is complete.
A (relatively straightforward) switch to Motor should fix this issue.
The text was updated successfully, but these errors were encountered:
PyMongo is blocking, and is thus incompatible with FastAPI, which is asynchronous. Any long-running queries running in a single endpoint will block every other operation until it is complete.
A (relatively straightforward) switch to Motor should fix this issue.
The text was updated successfully, but these errors were encountered: