Brett Wooldridge
caa4b0d0bc
Fixes #400 make getters public
10 years ago
Brett Wooldridge
383af8577a
Merge pull request #396 from nitincchauhan/dev
...
do not set connection with property that user have not specified.
10 years ago
Nitin
e91059f320
fix test
10 years ago
Nitin
dd6fdae57e
do not call set for TRANSACTION_NONE
10 years ago
Nitin
480fd309d2
do not call set if default is same as user specified
10 years ago
Nitin
af4f8a991c
do not set connection with property that user have not specified.
10 years ago
Brett Wooldridge
b8d2077869
Even more correct lastAccess tracking.
10 years ago
Brett Wooldridge
a552eb9712
Merge pull request #395 from nitincchauhan/dev
...
cleanup
10 years ago
Nitin
891b5cd930
moved closeStatements()
10 years ago
Nitin
8d1ba093b1
missed one
10 years ago
Nitin
8f61b1781c
unintentional logging
10 years ago
Nitin
000654e737
remove resetPoolEntry(), calling individual method if changed
10 years ago
Nitin
d362ed52df
set lastAccess only if rolled back
...
closeStatements() already caches sqlexception
10 years ago
Brett Wooldridge
a25d6f0213
Update README.md
10 years ago
Brett Wooldridge
d9f6eddada
[maven-release-plugin] prepare for next development iteration
10 years ago
Brett Wooldridge
2ff516228e
[maven-release-plugin] prepare release HikariCP-2.4.1
10 years ago
Brett Wooldridge
ee8025e99c
fix javadoc error
10 years ago
Brett Wooldridge
45a7f1ba5b
Merge branch 'dev' of https://github.com/brettwooldridge/HikariCP
10 years ago
Brett Wooldridge
e369f09a4e
Update changes log.
10 years ago
Brett Wooldridge
dbe9320924
Back-out deoptimization. Benchmark shows degradation, which makes sense because
...
of a new conditional in close() -- the return value of closeOpenStatements() -- which is
'true' 99.999% of the time and therefore the conditional is merely overhead.
10 years ago
Brett Wooldridge
182c8c58ab
Opps, forgot to flip the conditional.
10 years ago
Brett Wooldridge
4fbc2aa94b
Minor formatting change.
10 years ago
Brett Wooldridge
442bbc6362
Merge branch 'dev' of https://github.com/nitincchauhan/HikariCP into dev
10 years ago
Nitin
78034f7e45
changes as suggested
10 years ago
Brett Wooldridge
78842ce20f
Merge pull request #388 from Sangdol/dev
...
fixed comment
10 years ago
Nitin
ae4dbf916d
removed PoolBagEntry.aborted ...always had same 'value' as evicted
...
renamed PoolBagEntry.evicted to PoolBagEntry.evict
10 years ago
Nitin
19896c0619
if connection is marked for eviction, bypass reset state etc and close
...
it.
10 years ago
Hugh Lee
ad9f5e6a19
fixed comment
...
ClassLoader.getResourceAsStream() and Class.getResourceAsStream() are
different. Refer to http://stackoverflow.com/a/1464366/524588
10 years ago
Brett Wooldridge
fb50c8108c
Merge pull request #384 from yaojuncn/dev
...
revise connection pool cleanup logic by reducing unncessary loop,
10 years ago
yaojuncn
7ad2e94ed4
revise housekeeper log
10 years ago
Brett Wooldridge
01a9a09778
Revert fix #340 see discussion in issue tracker
10 years ago
yaojuncn
93bbb25d15
change removable check
10 years ago
yaojuncn
6cc3b278b4
fix the removable check; revise space style
10 years ago
Brett Wooldridge
9613b63a43
Fixed #380 housekeeper was not being scheduled in the case of a user specified ScheduledExecutorService.
10 years ago
yaojuncn
cbb1e1cc93
revise connection pool cleanup logic by reducing unncessary loop,
...
some details from
https://github.com/brettwooldridge/HikariCP/issues/379
based on original pull request
https://github.com/brettwooldridge/HikariCP/pull/383
10 years ago
Brett Wooldridge
68225c20f1
Merge pull request #383 from nitincchauhan/dev
...
Fixes #379 stop retiring idle connections when minimumIdle is reached.
10 years ago
Nitin
2a90f26145
log /creation cleanup
10 years ago
Nitin
c4b0ac352c
housekeeper should close evicted connections... but forget it :)
10 years ago
Nitin
7685f10303
check for evicted should not depend on removable
10 years ago
Nitin
5004e1f463
setting evicted was 'little' more aggressive
10 years ago
Nitin
6a2bfb758c
for closing connection, reserve entry only when it is past idle time or
...
evicted, not otherwise
10 years ago
Nitin
ebe5868fd1
changes as suggested
...
align log stats
10 years ago
Nitin
d04f4dd3f1
log actual error message instead of 'Exception during pool'
...
name 'PoolInitializationException' is descriptive enough
10 years ago
Nitin
cefc2af679
level up
10 years ago
Nitin
616a8321ab
break loop
10 years ago
Brett Wooldridge
5d183c5b7e
Merge pull request #378 from nitincchauhan/dev
...
tweak isConnectionAlive and few other
10 years ago
Nitin
6cee92a300
removed closing evicted connections from housekeeper
10 years ago
Nitin
9489dda6c0
reverted as per discussion
10 years ago
Nitin
8cc1214007
close connections marked for eviction first
10 years ago
Nitin
a286c264cc
change as suggested
10 years ago