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