N
N
nurzhannogerbek2018-09-13 13:46:55
Python
nurzhannogerbek, 2018-09-13 13:46:55

What framework to use for writing highly loaded microservices?

Hello comrades! I would like to ask you for advice.
Which of the frameworks of the Python programming language ecosystem is now most often used to write highly loaded microservices?
I understand that the choice of framework depends on specific tasks. It is assumed that a large amount of data will pass through the microservice, where you most likely need to use multithreading to process them. What framework would you recommend looking at?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
X
xmoonlight, 2018-09-13
@xmoonlight

https://habr.com/post/149420/

Python has a threading module, and it has everything you need for multi-threaded programming: there are various types of locks, a semaphore, and an event mechanism. In a word - everything you need for the vast majority of multi-threaded programs. Moreover, using all these tools is quite simple.

I
Igor Fomin, 2018-09-13
@pse17

Look aside to aiohttp, an asynchronous web client and server.

P
Petr Vasiliev, 2018-09-13
@danial72

Look towards moving complex calculations to a golang microservice

D
Dimonchik, 2018-09-13
@dimonchik2013

aiohttp or gin-gonic

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question