Skip to content
This repository was archived by the owner on Aug 26, 2021. It is now read-only.

Remove non-ASCII characters from README.rst #35

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ Optionally, you can provide additional options to pass to SQLAlchemy's pool crea

Here's a basic explanation of two of these options:

* **pool_size** The *minimum* number of connections to maintain in the pool.
* **max_overflow** The maximum *overflow* size of the pool. This is not the maximum size of the pool.
* **pool_size** - The *minimum* number of connections to maintain in the pool.
* **max_overflow** - The maximum *overflow* size of the pool. This is not the maximum size of the pool.

The total number of "sleeping" connections the pool will allow is ``pool_size``.
The total simultaneous connections the pool will allow is ``pool_size + max_overflow``.
Expand Down