bugsmith@programming.dev to Programming@programming.dev · 2 years agoHow Standard Ebooks serves millions of requests per month with a 2GB VPSalexcabal.comexternal-linkmessage-square38linkfedilinkarrow-up1111arrow-down15
arrow-up1106arrow-down1external-linkHow Standard Ebooks serves millions of requests per month with a 2GB VPSalexcabal.combugsmith@programming.dev to Programming@programming.dev · 2 years agomessage-square38linkfedilink
minus-squareadrian783@lemmy.worldlinkfedilinkarrow-up2·2 years agofor content sites, stateless is fine. for web apps you need states of all different kinds. even the smallest detail is a state in an application. endpoints themselves are stateless, but the web application is stateful. you only have to build the world once, and its much friendlier for end users.
minus-squareexpr@programming.devlinkfedilinkarrow-up1·2 years agoI wasn’t talking about frontend state, just the server. Frontend state is kind of irrelevant, tbh.
for content sites, stateless is fine. for web apps you need states of all different kinds. even the smallest detail is a state in an application.
endpoints themselves are stateless, but the web application is stateful. you only have to build the world once, and its much friendlier for end users.
I wasn’t talking about frontend state, just the server. Frontend state is kind of irrelevant, tbh.