Hacker News new | past | comments | ask | show | jobs | submit login

You have to be pretty big before "store the session information in Redis" doesn't work anymore.



And most of these session mechanisms are easy to work with as middleware in common web app frameworks making it pretty simple to stick with simpler sessions if everyone can get to the session store. Everyone way over complicates authn and sometimes barely even think about authorization. I have seen many a web app with poor JWTs implementation and abusable authz get broken. Sometimes the apps warranted the JWT implementation but it is a lot harder than many devs think.


That was a battle I fought with some developer consultancy not long ago. I won't tell the whole story, but I will say that if you have issue with JWT tokens that are too big due to the number of groups each user have, you probably do need to use JWTs and you are most definitely doing it wrong and should educate yourself or bring a consultant who at least get the difference between authentication and authorization.


I made a lot of money in my life because I knew the difference. Oh and XSS, paid the bills for a couple decades :)


Or just have infrastructure that needs to validate the session in different parts of the continent (world).


As far as system load sure. Not so much uptime.. keeping your session in Redis creates a single point of failure. HA/Clustered Redis exists but definitely has some associated complexity.


or you have crappy code that can only handle a dozen RPS. [facepalm]


I mean, if anything this just means that session storage won't be your bottleneck.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: