I can not help to get it as i never used this Library. It´s just a note that there is such Method but i don´t know if the Library-Author implemented this Method.
My app has been functioning great for many years. July 14, 2021 it started misbehaving... This is the batch file that starts my app, which is large (24 meg).. 'cd\root 'java -Xmx1024M -jar tripinspect.jar 'pause This is the error file (log section)... 'main._appstart (java line: 279)...
www.b4x.com
Note that it is better to use HikariCP-4.0.3 as it 5.x has some memory leak issues.
I can not help to get it as i never used this Library. It´s just a note that there is such Method but i don´t know if the Library-Author implemented this Method.
My app has been functioning great for many years. July 14, 2021 it started misbehaving... This is the batch file that starts my app, which is large (24 meg).. 'cd\root 'java -Xmx1024M -jar tripinspect.jar 'pause This is the error file (log section)... 'main._appstart (java line: 279)...
www.b4x.com
Note that it is better to use HikariCP-4.0.3 as it 5.x has some memory leak issues.
Tried ABHikari. works like a charm. Been using ABMaterial+c3p0 for a production App for years. At times i see that the open connection using c3p0 just goes up. No warning, No errors. The same code can run for days and weeks without increase in active connections. Wonder why.
Thought of switching to HikariCP and give it a try.
I can not help to get it as i never used this Library. It´s just a note that there is such Method but i don´t know if the Library-Author implemented this Method.
I can add this to the library if it works. When I looked there was only a private method to get the count. This was shown in the test sources only so I didn’t add it to the library as it relied on changing the access from private to public.
When there is a continuous connection via Hicari it will not disconnect. Leave for 1-2 days without connection and it will be discarded. With such a number of connections, you cannot be kicked out. I was also using Hicari (the project died already) for over 2 years with a few thousand online users and it worked much better than mysql itself.
I don't think that anyone without connections in 1-2 days need Hikari at all.
Every connection recycle it self every hour, also two active connections is set as minimum.
I can add this to the library if it works. When I looked there was only a private method to get the count. This was shown in the test sources only so I didn’t add it to the library as it relied on changing the access from private to public.
This is a wrapper for HikariCP which is a database connection pool manager (https://github.com/brettwooldridge/HikariCP) From the github page; Fast, simple, reliable. HikariCP is a "zero-overhead" production ready JDBC connection pool. At roughly 130Kb, the library is very light. A user called...
This is a wrapper for HikariCP which is a database connection pool manager (https://github.com/brettwooldridge/HikariCP) From the github page; Fast, simple, reliable. HikariCP is a "zero-overhead" production ready JDBC connection pool. At roughly 130Kb, the library is very light. A user called...