|
|
|
|
|
by a_random_canuck
752 days ago
|
|
In my experience for medium sized services it’s still better to have everything talk to the same authentication database. Postgres has insanely good read performance. Most companies and services are never going to reach the scale where any of this matters, and developer time is usually the more precious resource. My advice is always, don’t get your dev team bogged down supporting all this complicated JWT stuff (token revocation, blacklisting, refresh, etc) when you are not Facebook scale / don’t have concrete data showing your service really truly needs it. |
|
A simple JWT implementation isn't that complicated, but you have to accept some limitations.