@thedevs · Post #1945 · 13.09.2021 г., 13:43
React Native's many platform vision. #article#reactnative @thedevs https://kutt.it/lwbask
Hashtags
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
Пребарај: #reactnative
@thedevs · Post #1945 · 13.09.2021 г., 13:43
React Native's many platform vision. #article#reactnative @thedevs https://kutt.it/lwbask
Hashtags
@thedevs · Post #1679 · 05.02.2020 г., 17:47
React Native is the future of mobile at Shopify. #article#js#reactnative @thedevs https://kutt.it/9qzLL2
Hashtags
@thedevs · Post #1153 · 20.06.2018 г., 17:26
React Native at Airbnb. #article#reactnative#react#js @thedevs https://kutt.it/TpaUfA
Hashtags
@thedevs · Post #1797 · 16.08.2020 г., 16:08
Flutter and React Native performance overview. #article#reactnative#flutter @thedevs https://kutt.it/KKKnli
Hashtags
@thedevs · Post #1227 · 17.09.2018 г., 08:14
Awesome React Native UI components updated weekly. #resources#list#design#ui#js#reactnative @thedevs https://kutt.it/YJRIP5
@githubtrending · Post #14728 · 20.05.2025 г., 13:00
#typescript#android#appwrite#backend#backend_as_a_service#docker#firebase#flutter#hacktoberfest#hosting#ios#javascript#nextjs#react#react_native#reactnative#self_hosted#selfhosted#serverless#swift#web Appwrite is a backend platform that helps you build web, mobile, and Flutter apps quickly and easily. It handles complex tasks like user authentication, database management, file storage, and more, so you don’t have to build these from scratch. Appwrite is open source, secure, and works with many programming languages and frameworks. You can use it in the cloud or host it yourself using Docker. The main benefit is that it saves you time and effort, letting you focus on creating great features for your app instead of worrying about backend setup and maintenance[3][5][1]. https://github.com/appwrite/appwrite