When performing SISMEMBER
operation on a Redis key that has a set data structure value, does the set size of the key affect performance?
CodePudding user response:
As you can see in the documentation, this method is O(1) in time complexity. It is not affected by set size.