• @Obsession
    link
    English
    -221 year ago

    In a world of containers and stateless applications, fuck SQLite.

    • @[email protected]
      link
      fedilink
      English
      61 year ago

      … you know you can put SQLite in a container right? It doesn’t even need to be persisted to disk - it can just live in RAM.

      • @Obsession
        link
        English
        -21 year ago

        If you don’t care about persistence, why are you even using a DB in the first place?

      • @Obsession
        link
        English
        11 year ago

        Please teach me how to configure my containers so SQLite can scale horizontally.

        • @[email protected]
          link
          fedilink
          English
          2
          edit-2
          1 year ago

          Other databases have the same issue, try having multiple database containers (without massive speed losses). If application is bound by the performance of the front end, this is a problem, but those really are not what SQLite was intended for.

          In the case of database bound applications, SQLite is just as good as any other database, which despite having a client server model can typically only handle a single operation at once.

          • @Obsession
            link
            English
            01 year ago

            You misunderstood. I’m not talking about scaling the DB horizontally, I’m talking about scaling the application using the DB horizontally.