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 слични објави

Пребарај: #ihs

当前筛选 #ihs清除筛选
Crypto M - Crypto News

@CryptoM · Post #64907 · 10.04.2026 г., 08:51

🚀 Austrian Economic Institutes Lower Growth Forecasts Amid Iran Conflict Impact On April 10, two major Austrian economic research institutes announced that the ongoing conflict in Iran is threatening Austria's economic recovery in 2026. According to Jin10, the Institute for Advanced Studies (IHS) has revised its growth forecast for Austria's economy in 2026 down to 0.5% and in 2027 to 0.8%, from previous estimates of 1.0% and 1.1%, respectively. The revision is attributed to soaring energy prices and increased uncertainty. Similarly, the Austrian Institute of Economic Research (WIFO) has adjusted its GDP forecast, projecting growth between 0.2% and 1.1% for 2026, and between 0.4% and 1.5% for 2027, down from earlier predictions of 1.2% and 1.4%. WIFO noted that the current uncertain international environment complicates forecasting efforts. WIFO also anticipates Austria's inflation rate to range between 2.5% and 4.1% in 2026, and between 2.2% and 3.5% in 2027. Meanwhile, IHS forecasts this year's inflation rate at 2.9%, with a decrease to 2.4% in 2027. #Austria#economicforecast#Iranconflict#energyprices#GDPgrowth#inflation#IHS#WIFO#economicrecovery#2026growth#2027forecast#internationaluncertainty