@Override
 public RedisClient zscan(
     String key, String cursor, ScanOptions options, Handler<AsyncResult<JsonArray>> handler) {
   sendJsonArray(
       ZSCAN,
       RedisCommandUtils.toPayload(key, cursor, options != null ? options.toJsonArray() : null),
       handler);
   return this;
 }