-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move SQLResultAdapter is close to RowDecoder #115
Labels
Milestone
Comments
zero88
added a commit
that referenced
this issue
Jul 15, 2022
zero88
added a commit
that referenced
this issue
Aug 5, 2022
zero88
added a commit
that referenced
this issue
Aug 5, 2022
[#115] Add FieldWrapper to be able to fallback get value by column number
zero88
added a commit
that referenced
this issue
Aug 5, 2022
zero88
added a commit
that referenced
this issue
Aug 5, 2022
zero88
added a commit
that referenced
this issue
Aug 5, 2022
[#115] Add FieldWrapper to be able to fallback get value by column number
zero88
added a commit
that referenced
this issue
Aug 5, 2022
zero88
added a commit
that referenced
this issue
Aug 5, 2022
zero88
added a commit
that referenced
this issue
Aug 5, 2022
zero88
added a commit
that referenced
this issue
Aug 6, 2022
zero88
added a commit
that referenced
this issue
Aug 6, 2022
zero88
added a commit
that referenced
this issue
Aug 6, 2022
zero88
added a commit
that referenced
this issue
Aug 6, 2022
zero88
added a commit
that referenced
this issue
Aug 6, 2022
zero88
added a commit
that referenced
this issue
Aug 6, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Motivation
The current
SQLResultAdapter
is called afterVertx SQL client
executes the SQL query then stores the result into Vertx ResultSet (RowSet<Row>
). It will affect performance when looping on the result set once more time, to make the output to JSON record.To improve the performance and reduce the converter time, need to make SQLResultAdapter is as Vertx collectors, that will be invoked in
RowDecoder
The SQLResultAdapter can be used as collector or mapper
The text was updated successfully, but these errors were encountered: