forked from brianmario/mysql2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid GC run between mysql_stmt_execute and mysql_stmt_store_result
Fixes brianmario#694.
- Loading branch information
Showing
1 changed file
with
1 addition
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Does holding the GVL block GC? I did some searching about this, and did not find any good answer.
Releasing the GVL during network activity is a nice performance benefit that I would hope not to lose 😿
Also, I will try your test case with
:stream => true
– I suspect that it will make the whole issue more complicated...