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

Пребарај: #agroecology

当前筛选 #agroecology清除筛选
Venezuelanalysis

@venanalysis · Post #2062 · 12.08.2025 г., 20:51

📝 INTERVIEW | Esquisa Omaña: ‘Agroecology Is the Alternative to the Climate and Civilization Collapse’ In the latest VA interview, Venezuelan biologist and ecologist Esquisa Omaña, a researcher at the Venezuelan Institute for Scientific Research (IVIC) and doctoral candidate in Agrarian Social Studies at the University of Córdoba (Argentina), discusses agroecology as a grassroots alternative to agribusiness. She is also active in the GMO-Free Venezuela Campaign and the Pueblo a Pueblo Plan. 'Agroecology or nothing,' states Omaña, stressing that only community-based farming rooted in Indigenous and Afro-descendant traditions can confront the climate and civilization collapse. She points to rotational conuco agriculture and initiatives like Pueblo a Pueblo, which supplies 100 tons of food monthly to schools, as proof that local models can feed people while challenging corporate control of food systems. 🔗 Read the full interview here: https://shorturl.at/zWvmQ #Agroecology#ClimateChange#PuebloaPueblo

Venezuelanalysis

@venanalysis · Post #2369 · 17.05.2026 г., 17:06

🗒️🗣️ INTERVIEW | Liccia Romero: ‘We Need a Policy to Fund Agroecology’ Biologist and organizer Liccia Romero discusses the achievements and challenges of agroecology in Venezuela, drawing from the experience of the Mano a Mano Agroecological Market in Mérida. In the interview, Romero discusses how producers adapted to the pandemic, the blockade, fuel shortages, and changing consumption patterns. She also explains the importance of open-pollinated seeds, crop diversification, participatory agroecological certification, and Venezuela’s 2015 Seed Law. “We need a funding policy for agroecological initiatives,” Romero says, arguing that agroecology is often limited to small-scale production because it lacks large-scale support. Read the full interview 👉https://venezuelanalysis.com/interviews/liccia-romero-we-need-a-policy-to-fund-agroecology #Agroecology#FoodSovereignty#PopularEconomy#SeedLaw