• jaybone@lemmy.world
    link
    fedilink
    arrow-up
    1
    arrow-down
    2
    ·
    8 months ago

    If it’s stateless and nothing is kept in memory, can you have a connection pool?

    • aksdb@feddit.de
      link
      fedilink
      arrow-up
      1
      arrow-down
      1
      ·
      8 months ago

      If you run it in old-school CGI mode, no, because each request would spawn a new process. But that’s nowhere near state-of-the-art. So typically you would still have a long-running process somewhere that could manage a connection pool. No idea if it does, though. Can’t imagine that it wouldn’t, however, since PHP would be slaughtered in benchmarks if there was no way to keep connections (or pools) open across requests.