TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #425 · 20 апр.

Недавно делал быстрый прототип асинхронного приложения в котором требовалось вызывать много синхронного кода. Да, я знаю, что это не лучший дизайн, но нужно было быстрое решение на один процесс и без очередей. Поэтому я выполнял код в потоках. Выглядело это примерно так: from fastapi.concurrency import run_in_threadpool async def execute(data: DataRequest) -> DataResponse: try: result = await run_in_threadpool(sync_function, data) return DataResponse(data=result) except Exception as e: return DataResponse( error=str(e), success=False, ) В общем работает нормально. Для всех вызовов под капотом используется общий тредпул, всё работает предсказуемо. Но потребовалось изменить количество запускаемых в пуле потоков (по умолчанию создается 40 воркеров). Так как дело происходит с FastAPI, делается это через lifespan используя настройки anyio: import anyio @asynccontextmanager async def lifespan(app: FastAPI): limiter = anyio.to_thread.current_default_thread_limiter() limiter.total_tokens = 100 yield # если вдруг нужно вернуть обратно limiter.total_tokens = 40 Зачем менять количество воркеров? - уменьшить, если оперативки мало (один тред занимает ~8мб) - увеличить чтобы выдержать нагрузку Если есть предложения получше при тех же вводных - предлагайте😉 #async

Hashtags

Резултати

Пронајдени 1 слични објави

Пребарај: #hkja

当前筛选 #hkja清除筛选
Hong Kong Democracy Movement

@hkdmovement · Post #7828 · 17.09.2024 г., 04:44

Sep 13: Hong Kong's Press Freedom Under Pressure Alarming report from the Hong Kong Journalists Association (HKJA): • 15 media organizations targeted • Dozens of journalists and families threatened • 36+ individuals "named" online with accusations • 8 journalists' addresses received intimidating letters 🔍 Key developments: - Anonymous "patriots" sending threatening messages - Attempts to pressure journalists to quit jobs/unions - Multiple cases reported to police The HKJA condemns these intimidation attempts and calls for investigations. Press Freedom Decline: Since 2019, journalistic freedom in Hong Kong has significantly decreased. The Chinese Communist Party's increasing influence and policy changes have led to a more restrictive environment for independent journalism. These recent incidents highlight the growing challenges faced by Hong Kong's media, raising concerns about the future of free press in the city. #PressFreedom#HongKongJournalism#MediaFreedom#HKJA#StandWithJournalists