|
|
|
|
|
by jpc0
632 days ago
|
|
Forcing something like WSGI and distributed computing is the biggest thing architecturally. I'm currently moving 4 python microservices into a single go binary. The only reason they were ever microservices was because of WSGI and how that model works. In any conventional language those are just different threads in the same monolith but I didn't have that choice. So instead of deploying a single binary I had to deploy microservices and a gateway and a reverse proxy and a redis instance, for an internal tool that sees maybe 5 users... It was the wrong tool for the job. |
|