| 545 | } |
| 546 | |
| 547 | rocksdb::Status String::MSetNX(engine::Context &ctx, const std::vector<StringPair> &pairs, bool *flag) { |
| 548 | return MSet(ctx, pairs, {/*expire=*/0, StringSetType::NX, /*keep_ttl=*/false}, flag); |
| 549 | } |
| 550 | |
| 551 | // Change the value of user_key to a new_value if the current value of the key matches old_value. |
| 552 | // ret will be: |
no outgoing calls