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

Резултати

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

Пребарај: #budgeting

当前筛选 #budgeting清除筛选
gov.sg

@Govsg · Post #2221 · 03.06.2024 г., 04:15

What are some ways to reduce household expenses? Finance writer Dawn from ‘SG Budget Babe’ shares some of her top cost-saving tips. ➡️ Read more: go.gov.sg/costofliving-youknowornot-2 #YouKnowOrNot#CostofLiving#budgeting#adulting Drop us a 👍🏻 or 🤩 if you like her tips!

International Geographic

@internationalgeographic · Post #5933 · 04.09.2025 г., 10:39

Monesto is a personal and group expense tracker that works inside Telegram groups. Add it to your trip, roommates, or team chat to keep money clear and fair. What you can do: - Add shared expenses in seconds - Scan receipts and auto-parse - See balances for everyone - Multi-currency supported - Personal tracking and analytics available inside the app Open the mini app or Add to group #Finance#Budgeting#GroupExpenses#Monesto

GitHub Trends

@githubtrending · Post #14889 · 30.06.2025 г., 13:00

#typescript#budgeting#finance#money#personal_finance Actual Budget is a free and open-source tool for managing personal finances. It allows you to track all your accounts in one place and sync changes across devices easily. You can install it in several ways: using a one-click deployment, managed hosting, a Docker image, or by downloading local apps for Windows, Mac, or Linux. This tool helps you manage transactions efficiently, create budgets, and view reports like net worth and cash flow. It's beneficial because it's easy to use, customizable, and keeps your financial data secure and accessible. https://github.com/actualbudget/actual