private async Task ClearEffectivePermissionsForUser(string userId)
 {
     // Delete entire hash set for user (removing all effective permissions per spec)
     await _cacheProviderPolicy.ExecuteAsync(() => _cacheProvider.DeleteHashSet($"{CacheKeys.EffectivePermissions}:{userId}"));
 }