> 백엔드 개발 > 파이썬 튜토리얼 > FastAPI 엔드포인트에서 전역 개체를 효율적으로 초기화하고 재사용하는 방법은 무엇입니까?

FastAPI 엔드포인트에서 전역 개체를 효율적으로 초기화하고 재사용하는 방법은 무엇입니까?

Barbara Streisand
풀어 주다: 2024-11-30 14:54:14
원래의
238명이 탐색했습니다.

How to Efficiently Initialize and Reuse a Global Object Across FastAPI Endpoints?

전역 개체 또는 변수를 초기화하고 모든 FastAPI 엔드포인트에서 재사용하는 방법은 무엇입니까?

배경

알림 전송을 위해 설계된 사용자 정의 클래스를 고려해보세요. 초기화에는 알림 서버에 대한 연결 설정이 포함되며 이는 시간이 많이 걸리는 프로세스입니다. 이 클래스는 엔드포인트 응답 지연을 방지하기 위해 FastAPI의 백그라운드 작업 내에서 활용됩니다. 그러나 현재 접근 방식에는 다음과 같은 제한 사항이 있습니다.

file1.py:
noticlient = NotificationClient()

@app.post("/{data}")
def send_msg(somemsg: str, background_tasks: BackgroundTasks):
    result = add_some_tasks(data, background_tasks, noticlient)
    return result

file2.py:
def add_some_tasks(data, background_tasks: BackgroundTasks, noticlient):
    background_tasks.add_task(noticlient.send, param1, param2)
    result = some_operation
    return result
로그인 후 복사

file1.py의 전역 알림 클라이언트 초기화로 인해 요청이 수신될 때마다 여러 중복 초기화가 발생하므로 이는 비효율적입니다.

접근 방식

옵션 1: 활용 app.state

FastAPI를 사용하면 app.state를 사용하여 임의의 상태를 저장할 수 있습니다. 수명과 같은 종속성 수명 주기 기능을 사용하여 FastAPI 시작 또는 종료 중에 NotificationClient 객체를 초기화하고 이를 app.state에 추가할 수 있습니다.

from fastapi import FastAPI, Request
from contextlib import asynccontextmanager


@asynccontextmanager
async def lifespan(app: FastAPI):
    ''' Run at startup
        Initialise the Client and add it to app.state
    '''
    app.state.n_client = NotificationClient()
    yield
    ''' Run on shutdown
        Close the connection
        Clear variables and release the resources
    '''
    app.state.n_client.close()


app = FastAPI(lifespan=lifespan)


@app.get('/')
async def main(request: Request):
    n_client = request.app.state.n_client
    # ...
로그인 후 복사

옵션 2: Starlette 수명 활용

Starlette의 수명 핸들러를 사용하면 다음을 통해 엔드포인트 내에서 액세스할 수 있는 상태 개체를 정의할 수 있습니다. request.state.

from fastapi import FastAPI, Request
from contextlib import asynccontextmanager


@asynccontextmanager
async def lifespan(app: FastAPI):
    ''' Run at startup
        Initialise the Client and add it to request.state
    '''
    n_client = NotificationClient()
    yield {'n_client': n_client}
    ''' Run on shutdown
        Close the connection
        Clear variables and release the resources
    '''
    n_client.close()


app = FastAPI(lifespan=lifespan)


@app.get('/')
async def main(request: Request):
    n_client = request.state.n_client
    # ...
로그인 후 복사

위 내용은 FastAPI 엔드포인트에서 전역 개체를 효율적으로 초기화하고 재사용하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿