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

Резултати

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

Пребарај: #usenergy

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

@CryptoM · Post #64970 · 10.04.2026 г., 12:36

🚀 U.S. Energy Inflation Rises in March, Reports Bureau of Labor Statistics The U.S. Bureau of Labor Statistics reported that energy inflation in the United States increased by 10.9% month-over-month in March. According to Jin10, the year-over-year growth for the same period was 12.5%. These figures highlight the ongoing inflationary pressures within the energy sector. #USEnergy#Inflation#BureauOfLaborStatistics#EnergyPrices#EconomicTrends

Crypto M - Crypto News

@CryptoM · Post #65094 · 11.04.2026 г., 00:44

🚀 U.S. Energy Department to Loan 8.5 Million Barrels of Oil from Strategic Reserve The U.S. Department of Energy announced plans to loan 8.5 million barrels of crude oil from the Strategic Petroleum Reserve to four companies. According to BlockBeats, the companies involved in this arrangement include Macquarie and Phillips 66. This decision is part of ongoing efforts to manage the nation's energy resources effectively. #USEnergy#StrategicPetroleumReserve#CrudeOil#Macquarie#Phillips66#EnergyManagement#OilLoan