Skip to content

Commit ff3da11

Browse files
committed
Clarify pool behaviour. Fixes #747
1 parent 5d837b1 commit ff3da11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/content/connection-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Connection pooling is enabled by default. These options are used to configure it
149149
<tr>
150150
<td>Pooling</td>
151151
<td>true</td>
152-
<td>Enables connection pooling. When pooling is enabled, <code>MySqlConnection.Open</code> retrieves an open connection from the pool if one is available (opening a new connection if not), and <code>Close</code>/<code>Dispose</code> returns the open connection to the pool.</td>
152+
<td>Enables connection pooling. When pooling is enabled, <code>MySqlConnection.Open</code>/<code>OpenAsync</code> retrieves an open connection from the pool if one is available, and <code>Close</code>/<code>Dispose</code> returns the open connection to the pool. If there are no available connections in the pool, and the pool hasn’t reached <code>MaximumPoolSize</code> connections, a new connection will be opened; otherwise, the call to <code>Open</code>/<code>OpenAsync</code> blocks until a connection becomes available or <code>ConnectionTimeout</code> is reached.</td>
153153
</tr>
154154
<tr>
155155
<td>Connection Lifetime, ConnectionLifeTime</td>

0 commit comments

Comments
 (0)