検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 17 for asgi (0.030 sec.)
How to deploy with ASGI — Django 4.0.6 ドキュメント 14121
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... odules « previous | up | next » How to deploy with ASGI ¶ As well as WSGI, Django also supports deploying ... on ASGI , the emerging Python standard for asynchronous we ... startproject management command sets up a default ASGI configuration for you, which you can tweak as need ... ed for your project, and direct any ASGI-compliant application server to use. Django includ ...
https://man.plustar.jp/django/howto/deployment/asgi/index.html - [similar]
How to use Django with Daphne — Django 4.0.6 ドキュメント 10414
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... o use Django with Daphne ¶ Daphne is a pure-Python ASGI server for UNIX, maintained by members of the Djan ... go project. It acts as the reference server for ASGI. Installing Daphne ¶ You can install Daphne with p ... called with the location of a module containing an ASGI application object, followed by what the applicati ... invoking Daphne would look like: daphne myproject.asgi:application This will start one process listening ...
https://man.plustar.jp/django/howto/deployment/asgi/daphne.html - [similar]
How to use Django with Hypercorn — Django 4.0.6 ドキュメント 9880
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... How to use Django with Hypercorn ¶ Hypercorn is an ASGI server that supports HTTP/1, HTTP/2, and HTTP/3 wi ... alled, a hypercorn command is available which runs ASGI applications. Hypercorn needs to be called with th ... e location of a module containing an ASGI application object, followed by what the applicati ... ing Hypercorn would look like: hypercorn myproject.asgi:application This will start one process listening ...
https://man.plustar.jp/django/howto/deployment/asgi/hypercorn.html - [similar]
How to use Django with Uvicorn — Django 4.0.6 ドキュメント 9880
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t » How to use Django with Uvicorn ¶ Uvicorn is an ASGI server based on uvloop and httptools , with an emp ... stalled, a uvicorn command is available which runs ASGI applications. Uvicorn needs to be called with the ... location of a module containing an ASGI application object, followed by what the applicati ... voking Uvicorn would look like: gunicorn myproject.asgi:application -k uvicorn.workers.UvicornWorker This ...
https://man.plustar.jp/django/howto/deployment/asgi/uvicorn.html - [similar]
How to deploy Django — Django 4.0.6 ドキュメント 9397
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Django currently supports two interfaces: WSGI and ASGI. WSGI is the main Python standard for communicatin ... plications, but it only supports synchronous code. ASGI is the new, asynchronous-friendly standard that wi ... 設定する Applying WSGI middleware How to deploy with ASGI How to use Django with Daphne How to use Django wi ... オブジェクト Settings モジュールを設定する Applying ASGI middleware デプロイチェックリスト manage.py check ...
https://man.plustar.jp/django/howto/deployment/index.html - [similar]
非同期サポート — Django 4.0.6 ドキュメント 9207
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... previous | up | next » 非同期サポート ¶ Djangoは、 ASGI の環境下であれば、完璧な非同期リクエストスタックに ... が使えます。 もしこれらを利用したい場合は、代わりに ASGI を使ってDjangoをデプロイする必要があります。 警告 ... re ... adapted" に関するログメッセージを探します。 ASGIとWSGIの両方のモードで、非同期サポートを使用し、シリ ... ` sync_to_async`でラップする必要があります。 from asgiref.sync import sync_to_async results = await sync_ ...
https://man.plustar.jp/django/topics/async.html - [similar]
Django 3.0 リリースノート — Django 4.0.6 ドキュメント 8483
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... した。詳しくは、 MariaDB ノート を参照してください。 ASGI のサポート ¶ Django 3.0 から、 ASGI アプリケーショ ... l only be available to applications that run under ASGI, however. At this stage async support only applies ... to the outer ASGI application. Internally everything remains synchro ... etc. are not yet supported. You can, however, use ASGI middleware around Django's application, allowing y ...
https://man.plustar.jp/django/releases/3.0.html - [similar]
はじめての Django アプリ作成、その 1 — Django 4.0.6 ドキュメント 7862
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... py mysite / __init__ . py settings . py urls . py asgi . py wsgi . py ファイルはそれぞれ以下のような役割を ... くは URL ディスパッチャ を参照 してください。 mysite/asgi.py : プロジェクトを提供する ASGI 互換 Web サーバー ... エントリポイント。詳細については How to deploy with ASGI を参照してください。 mysite/wsgi.py : プロジェクト ...
https://man.plustar.jp/django/intro/tutorial01.html - [similar]
asgiref.sync — Django 4.0.6 ドキュメント 7759
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... メント Home | Table of contents | Index | Modules up asgiref.sync のソースコード import asyncio.coroutines i ... f which CurrentThreadExecutor to use. This uses an asgiref # Local, not a threadlocal, so that tasks can w ... e a TypeError will be raised. """ # If they've set ASGI_THREADS, update the default asyncio executor for n ... ow if "ASGI_THREADS" in os . environ : # We use get_event_loop ...
https://man.plustar.jp/django/_modules/asgiref/sync.html - [similar]
Django の例外 — Django 4.0.6 ドキュメント 7673
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ent If a SuspiciousOperation exception reaches the ASGI/WSGI handler level it is logged at the Error level ... lient error. If a BadRequest exception reaches the ASGI/WSGI handler level it results in a HttpResponseBad ... d call it in that. You can accomplish this is with asgiref.sync.sync_to_async() . URL Resolver の例外 ¶ UR ...
https://man.plustar.jp/django/ref/exceptions.html - [similar]
PREV 1 2 NEXT