nickwitha_k (he/him)

  • 1 Post
  • 129 Comments
Joined 2 years ago
cake
Cake day: July 16th, 2023

help-circle



  • using Python

    Full disclosure: I like Python a lot and have written a lot of it.

    That said, if not for my recent work experiences, I would be absolutely horrified at the idea of using Python for such a project. Between the type system and being interpreted, the performance and runtime issues are pretty painful. That and the historical greater dependence on external application servers really makes Python-based services something that really sucks to administer.

    However, as I noted, I have also recently seen Python performing far faster than it has any right to with highly-optimized use of multi-processing and offloading the server stuff to Go.

    I think I’m going to have to take a look at Piefed source this weekend.