BookSleeve.RedisConnection.RemoveFromSortedSetByScore C# (CSharp) Method

RemoveFromSortedSetByScore() private method

private RemoveFromSortedSetByScore ( int db, string key, int start, int stop, bool queueJump = false ) : Task
db int
key string
start int
stop int
queueJump bool
return Task
        public Task<long> RemoveFromSortedSetByScore(int db, string key, int start, int stop, bool queueJump = false)
        {
            return SortedSets.RemoveRange(db, key, (double)start, (double)stop, queueJump);
        }