Takahē 0.10 is finally released! This is mostly performance and stability updates, but there's plenty of bugfixes to federation and the client app API as well.
@takahe "has had most of its async nature removed, as this both reduces deadlocks and improves performance in most situations (the context switching was costing more than the gains from talking to other servers asynchronously)"
is this... a general problem of async in Python? or specific to Takahe?
@astrojuanlu @takahe It's specific to Takahē having a very database-heavy load in its tasks (rather than HTTP calls as I had initially expected), and Django's database code is not async all the way down yet. Yet!