1.3.0-beta.1
Pre-release
Pre-release
bgrainger
released this
25 Dec 20:26
·
972 commits
to master
since this release
- Connections are now reset asynchronously in the background: #178.
- This speeds up
MySqlConnection.Open(Async)
but still cleans up connections between uses. - Use
DeferConnectionReset=true
in the connection string to revert to the old behaviour. - Experimental Use
ConnectionIdlePingTime=300
in the connection string to avoid any network I/O when retrieving a connection from the pool; this is fastest but may return invalid connections fromOpen
. This setting is experimental and may change in the future.
- This speeds up
- Use transaction for
SHOW WARNINGS
: #918.