You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DataSource pool =DataSourceFactory.create("app", config);
18
+
19
+
```
20
+
21
+
22
+
### Robust and fast
23
+
24
+
This pool is robust in terms of handling loss of connectivity to the database and restoring connectivity.
25
+
It will automatically reset itself as needed.
26
+
27
+
This pool is fast and simple. It uses a strategy of testing connections in the background and when connections
28
+
are returned to the pool that have throw SQLException. This makes the connection testing strategy low overhead
29
+
but also robust.
30
+
31
+
32
+
33
+
### Mature
34
+
35
+
This pool has been is heavy use for more that 10 years and stable since April 2010 (the last major refactor to use `java.util.concurrent.locks`).
36
+
37
+
This pool was previously part of Ebean ORM with prior history in sourceforge.
38
+
39
+
There are other good DataSource pools out there but this pool has proven to be fast, simple and robust and maintains it's status as the preferred pool for use with Ebean ORM.
0 commit comments