[Maria-discuss] HikariCP + searching archives
Hello, I'm curious if there is a way to search the archives for this list - I couldn't find one, so I think I'm about to ask a simple question, but here goes: I noticed the MariaDB connector/J docs give an example using the HikariCP connection pool. Was there any reason for this? I saw they filed bugs in the mariadb jira, so they have put some effort into working with the community - and they have pretty graphs showing how fast they are. We're not really too worried about optimizing it yet - just adding a connection pool as a best practice kind of thing to a rest service hitting mariadb. Just wanted to make sure there weren't any caveats to using it with connector/J or if it was picked as the example for any particular reason. Also - any thoughts on pooling being a best practice to start off with or an optimization you should put in when you need it, and feel like tweaking pool lifetimes, etc... Thanks! Take care, -stu
Stu Smith <stu26code@gmail.com> writes:
I'm curious if there is a way to search the archives for this list - I
One way is to use google with an additional search term: site:lists.launchpad.net/maria-discuss This restricts the search to the archives. The maria-developers@ list can be similarly searched by adding a search term: site:lists.launchpad.net/maria-developers Hope this helps, - Kristian.
Thanks! But, yes I tried that before asking - and got no results, so I figured it couldn't be indexed for some reason. Maybe I had a typo.. or I guess maybe there weren't very many (any) hikari questions on discuss? Take care, -stu On Apr 16, 2016 1:18 AM, "Kristian Nielsen" <knielsen@knielsen-hq.org> wrote:
Stu Smith <stu26code@gmail.com> writes:
I'm curious if there is a way to search the archives for this list - I
One way is to use google with an additional search term:
site:lists.launchpad.net/maria-discuss
This restricts the search to the archives. The maria-developers@ list can be similarly searched by adding a search term:
site:lists.launchpad.net/maria-developers
Hope this helps,
- Kristian.
Hi! I think Kristian answered the questions about searching (I too recommend using Google search)
On 16 Apr 2016, at 09:38, Stu Smith <stu26code@gmail.com> wrote:
I noticed the MariaDB connector/J docs give an example using the HikariCP connection pool. Was there any reason for this?
I saw they filed bugs in the mariadb jira, so they have put some effort into working with the community - and they have pretty graphs showing how fast they are.
We're not really too worried about optimizing it yet - just adding a connection pool as a best practice kind of thing to a rest service hitting mariadb. Just wanted to make sure there weren't any caveats to using it with connector/J or if it was picked as the example for any particular reason.
As for the above, I’ve added wlad and diego whom may be able to hep you more on Connector/J cheers, -colin -- Colin Charles, http://bytebot.net/blog/ twitter: @bytebot | skype: colincharles "First they ignore you, then they laugh at you, then they fight you, then you win." -- Mohandas Gandhi
Hi Stu, There is many good pooling framework, and HikariCP is one of the best of them. This framework is stable, has a good community, is light (130kb - c3p0 487kb - dbcp2 171kb) and code is clean (c3p0 is unreadable). A pool must present a Connection instance normally indistinguishable from a "fresh" Connection. I recommand reading https://github.com/brettwooldridge/HikariCP/wiki/%22My-benchmark-doesn't-show-a-difference . HikariCP does the job well and it's fast. The example with HilkariCP was written just to have one example project (for support), there is no known caveat using HikariCP with the MariaDB and there is big companies using the combination in production. Diego. On Sun, Apr 17, 2016 at 5:20 PM, Colin Charles <byte@aeon.com.my> wrote:
Hi!
I think Kristian answered the questions about searching (I too recommend using Google search)
On 16 Apr 2016, at 09:38, Stu Smith <stu26code@gmail.com> wrote:
I noticed the MariaDB connector/J docs give an example using the HikariCP connection pool. Was there any reason for this?
I saw they filed bugs in the mariadb jira, so they have put some effort into working with the community - and they have pretty graphs showing how fast they are.
We're not really too worried about optimizing it yet - just adding a connection pool as a best practice kind of thing to a rest service hitting mariadb. Just wanted to make sure there weren't any caveats to using it with connector/J or if it was picked as the example for any particular reason.
As for the above, I’ve added wlad and diego whom may be able to hep you more on Connector/J
cheers, -colin
-- Colin Charles, http://bytebot.net/blog/ twitter: @bytebot | skype: colincharles "First they ignore you, then they laugh at you, then they fight you, then you win." -- Mohandas Gandhi
participants (4)
-
Colin Charles
-
Diego Dupin
-
Kristian Nielsen
-
Stu Smith