Emmanuel Briot

Results 3 issues of Emmanuel Briot

Hello, I am implementing a tool that deals with case-insensitive programming languages (Ada in particular, but also a custom DSL from another company). I wonder whether you have given any...

On code that dynamically add work to pool, for instance async with aiomultiprocess.Pool() as pool: async with asyncio.TaskGroup() as tg: _ = tg.create_task(monitor.listen() Where monitor.listen() gets work (for instance by...

My application has a main loop that basically looks like ``` async with aiomultiprocess.Pool( processes=Global.PROCESSES, initializer=Global.create, initargs=(args, Global.psql, openai_factory), maxtasksperchild=0, # kill processes after those tasks childconcurrency=Global.CHILD_CONCURRENCY, queuecount=Global.QUEUES, scheduler=scheduler, loop_initializer=uvloop.new_event_loop,...