At some point I have to start wondering if Putin pays these sorts of people.

  • db0M
    link
    fedilink
    102 months ago

    The DB is all that matters. Python can scale very well through parallelization. So long as one doesn’t restrict themselves to one process, there’s really little chokepoint.

    • @ad_on_is@lemm.ee
      link
      fedilink
      English
      02 months ago

      Nope… CPU and memory usage matter as well… if they get exhausted, you get throttling. This also has an impact on server-costs… Why run 2 instances of something that serves 4k requests/second over one instance that serves 9k/s (just an over-exaggerating example)

      • db0M
        link
        fedilink
        5
        edit-2
        2 months ago

        That’s why I say if you don’t restrict to single process. As to why something which might be slightly more inefficient (it’s not going to be that much), it’s because of ease of development and pool of potential developers to help you with it.