Mongodb – how to start execution of a task group without awaiting it
I am using a mongodb change stream that listens for changes on a collection and runs a handler function that handles the change. I want each change coming in to be handled concurrently async def handle_collection_changes( *, change_stream, handler, handler_args,…