BookSleeve.RedisConnection.IncrementSortedSet C# (CSharp) Method

IncrementSortedSet() private method

private IncrementSortedSet ( int db, string key, double score, string values, bool queueJump = false ) : Task[]
db int
key string
score double
values string
queueJump bool
return Task[]
        public Task<double>[] IncrementSortedSet(int db, string key, double score, string[] values, bool queueJump = false)
        {
            return SortedSets.Increment(db, key, values, score, queueJump);
        }

Same methods

RedisConnection::IncrementSortedSet ( int db, string key, byte value, double score, bool queueJump = false ) : Task
RedisConnection::IncrementSortedSet ( int db, string key, string value, double score, bool queueJump = false ) : Task
RedisConnection::IncrementSortedSet ( int db, string key, double score, byte values, bool queueJump = false ) : Task[]