Unix socket connection to MySql with Java to avoid JDBC's TCP/IP overhead? -
is possible make unix socket connection mysql java avoid jdbc's tcp/ip overhead?
does know library (or few libraries, perhaps) makes possible?
also mysql jdbc driver has been polished on long period , has several optimization tweaks , caching of metadata. surprised jdbc developers have left lot of tcp/ip overhead in driver.
going on jni c based implementation cost more in jumping native code can gained reduced tcp/ip overhead.
if want cut out tcp/ip overhead might consider using embedded database sqlite, derby or hypersonic.
Comments
Post a Comment