asyncioについてのメモ
from 20241227
asyncioについてのメモ
asyncioを始めました
シェルスクリプトと言語依存の非同期処理の類似性?
スレッドセーフ
同じオブジェクトに複数のスレッドがアクセスする際は、オブジェクトに排他ロックをかける
Pythonのthreadingのthreading.Lock()を利用する
https://qiita.com/ouauai/items/d38eeef9f0af5a4a87da#%EF%BC%91%EF%BC%94整合性の取れていない並行処理並列処理
非同期処理とスレッディングの違い
https://qiita.com/T_unity/items/ea83b6992cde1c02f1dd
https://docs.python.org/3/library/http.server.html#http.server.BaseHTTPRequestHandler.log_error
https://docs.python.org/3/library/asyncio.html
https://docs.python.org/ja/3.14/library/concurrent.futures.html#threadpoolexecutor
asyncio での開発
time.monotonic()
複数のタスクを管理するためのソリューション
TaskGroupとasyncio.gather()の違い
asyncio.Eventでイベントハンドリング