public void Add(double score, T item, string[] tags)
 {
     if (tags == null || tags.Length == 0)
     {
         Add(score, item);
         return;
     }
     _cacheProvider.AddToSortedSet(RedisKey, score, item, tags);
 }