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

Popular posts from this blog

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

c++ - Convert big endian to little endian when reading from a binary file -