PurgeAuthTokenCache purges the short-term in-memory auth token cache.
()
| 268 | |
| 269 | // PurgeAuthTokenCache purges the short-term in-memory auth token cache. |
| 270 | func (s *Service) PurgeAuthTokenCache() { |
| 271 | s.authCache.Purge() |
| 272 | } |
| 273 | |
| 274 | // ValidateAuthToken validates an auth token against persistent storage. |
| 275 | // It includes a short-term in-memory cache to prevent |