public async Task<bool> AddKeyToTagsAsync(RedisClient client, IRedisCacheItem cacheItem)
        {
            if (cacheItem != null)
            {
                if (cacheItem.Tags != null && cacheItem.Tags.Any())
                {
                    await RemoveKeyFromTagsAsync(client, cacheItem);
                    await client.AddKeyToTagsAsync(cacheItem.Key, cacheItem.Tags);
                }
            }

            return true;
        }