2016-11-26 UTC
# petermolnar right; I finally have an understanding of async things in python... and it helped me to realise I need async AND threaded, where async handles the incoming requests and the longer operations are sent into threads in the background. The other way would be with queues, which I want to avoid, so does anyone have good examples on async + threads? ( this is for webmention handling being async, but without queueing )