Port spawn_blocking
idea to all SDK methods that do significant non-network work
#242
Labels
enhancement
New feature or request
In #241 we discovered that our cryptography and other heavy work done in futures leads to blocking easier/faster network calls under load. To fix
decrypt_document
we moved heavy work intotokio::spawn_blocking
to offload it to a threadpool separate from the one that deals with "normal" futures. We should be doing the same (or similar) everywhere that we do blocking work.The text was updated successfully, but these errors were encountered: