ComfyUIの読み込み時間の最適化
ローカルネットワーク上では実際にはより遅くなる可能性がありますが、インターネットケーブル、さらには悪条件のWi-Fiやモバイルネットワーク上では、ComfyUIを起動するたびに読み込み時間が大幅に改善されます。
server.py
に以下の変更を適用し、ComfyUIを再起動する必要があります:
diff --git a/server.py b/server.py
index c7bf662..4780ce0 100644
--- a/server.py
+++ b/server.py
@@ -565,7 +565,9 @@ class PromptServer():
except Exception as e:
logging.error(f"[ERROR] An error occurred while retrieving information for the '{x}' node.")
logging.error(traceback.format_exc())
- return web.json_response(out)
+ res = web.json_response(out)
+ res.enable_compression()
+ return res
@routes.get("/object_info/{node_class}")
async def get_object_info_node(request):
そして、以下のコマンドですべてを圧縮します:
cd ~/ComfyUI # これらのコマンドを実行するために、ComfyUIディレクトリに移動します。
find web* custom_nodes/**/{js,web} -type f \( -name "*.css" -o -name "*.html" -o -name "*.js" -o -name "*.json" \) ! -name "*.gz" ! -name "*.br" ! -name "*.zst" -print0 | xargs -0 -P $(nproc) -I {} bash -c '[[ ! -f "{}.gz" ]] && gzip -k "{}"'
Firefoxでは、HTTP接続上でbrotliがデフォルトで無効になっていますが、Chrome/Edge/Braveユーザーは代わりにbrotliを使用するか、両方を使用することができます:
find web* custom_nodes/**/{js,web} -type f \( -name "*.css" -o -name "*.html" -o -name "*.js" -o -name "*.json" \) -print0 | xargs -0 -P $(nproc) -I {} bash -c '[[ ! -f "{}.br" ]] && brotli --best "{}"'
ComfyUIの開発者がフロントエンドスクリプトのバージョン文字列を含めることを決めず、代わりにサルのようにno-cache
を使用しているため、フロントエンドが更新されるたびに再圧縮する必要があります!🐺
ComfyUI-Custom-Scriptsのautocomplete
ファイルも圧縮できますが、まずautocomplete.py
にパッチを適用する必要があります:
diff --git a/py/autocomplete.py b/py/autocomplete.py
index 8ac6a05..7d68e8f 100644
--- a/py/autocomplete.py
+++ b/py/autocomplete.py
@@ -12,8 +12,11 @@ file = os.path.join(dir, "autocomplete.txt")
@PromptServer.instance.routes.get("/pysssss/autocomplete")
async def get_autocomplete(request):
if os.path.isfile(file):
- return web.FileResponse(file)
- return web.Response(status=404)
+ res = web.FileResponse(file)
+ else:
+ res = web.Response(status=404)
+ res.enable_compression()
+ return res
そして、以下のコマンドでスペルブックを圧縮します:
gzip -k custom_nodes/ComfyUI-Custom-Scripts/user/autocomplete.txt
brotli --best custom_nodes/ComfyUI-Custom-Scripts/user/autocomplete.txt
大きな🧠を持つGærosに感謝します!