|
|
|
|
|
by zdragnar
752 days ago
|
|
You can use a separate DB that acts more like a cache for revocations- usually something where you can set a time to live on the row equal to the duration of the token itself. That keeps your application DB free for application load, while keeping your identity validation logic nice and snappy. Of course, adding infrastructure may be intimidating, but most applications that face any real load are going to be using redis or something similar anyway at some place in the stack. |
|