From e0e254b27fda3828a4b538742087617fe69d6a6a Mon Sep 17 00:00:00 2001 From: Pierre Templier Date: Tue, 27 Sep 2016 17:29:45 +0200 Subject: [PATCH] Typo ever -> every --- topics/database/datasource.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/topics/database/datasource.adoc b/topics/database/datasource.adoc index b8dc9484c1..e7918c659d 100755 --- a/topics/database/datasource.adoc +++ b/topics/database/datasource.adoc @@ -34,7 +34,7 @@ documentation for your vendor's JDBC implementation should specify the format fo Next define the `driver` you will use. This is the logical name of the JDBC driver you declared in the previous section of this chapter. -It is expensive to open a new connection to a database ever time you want to perform a transaction. To compensate, the datasource +It is expensive to open a new connection to a database every time you want to perform a transaction. To compensate, the datasource implementation maintains a pool of open connections. The `max-pool-size` specifies the maximum number of connections it will pool. You may want to change the value of this depending on the load of your system.