rem’s avatarrem’s Twitter Archive—№ 70,701

  1. This is going to sound naive, but for small projects (side or otherwise), it seems like the overhead of squeezing and refactoring everything into lambda/serverless functions seems totally overkill to a €3-$5/month server that can host everything (db, apps, crons, etc).
    1. …in reply to @rem
      I've been prodding and poking a few websites I've built to make them _compatible_ as serverless and it's been a total arse. Now that it finally runs in a lambda, the db is having problems due to concurrent inbound connections, rather than a single constant connection.
      1. …in reply to @rem
        Plus with serverless, I'm having to learn all types of new dbs, frameworks and tricks (like apollo-graphql-* modules don't fit inside resource limits, so having to go barebones and hack). Whereas a per month server, simple, just throw what I need on, postgres, etc. done.