Home > OS >  Does the value set size of Redis key affect performance?
Does the value set size of Redis key affect performance?

Time:09-21

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.

  • Related