| 481 | } |
| 482 | |
| 483 | int redis_script::script_exists(const std::vector<string>& scripts, |
| 484 | std::vector<bool>& out) |
| 485 | { |
| 486 | build("SCRIPT", "EXISTS", scripts); |
| 487 | int ret = get_status(out); |
| 488 | if (ret != (int) scripts.size()) { |
| 489 | return -1; |
| 490 | } |
| 491 | return ret; |
| 492 | } |
| 493 | |
| 494 | int redis_script::script_exists(const std::vector<const char*>& scripts, |
| 495 | std::vector<bool>& out) |
nothing calls this directly
no test coverage detected