| 874 | ///////////////////////////////////////////////////////////////////////////// |
| 875 | |
| 876 | const redis_result** redis_command::scan_keys(const char* cmd, const char* key, |
| 877 | int& cursor, size_t& size, const char* pattern, const size_t* count) |
| 878 | { |
| 879 | size_t klen = key ? strlen(key) : 0; |
| 880 | return scan_keys(cmd, key, klen, cursor, size, pattern, count); |
| 881 | } |
| 882 | |
| 883 | const redis_result** redis_command::scan_keys(const char* cmd, const char* key, |
| 884 | size_t klen, int& cursor, size_t& size, const char* pattern, |
nothing calls this directly
no test coverage detected