The time complexity of Redis sorted set insertion is O(log n) and I assume it is due to the insertion of data in the skip list (In order to maintain the Set Order). But if the data that I am going to insert will always have scores in increasing order, is it still going to be O(log N)? I guess they should have a simple pointer to the tail of the skip list which could do the insertion in O(1).
Sorry if I have missed a basic thing here.