HandlerSocket gives you direct access to InnoDB/XtraDB. It is included in MariaDB 5.3 as a ready-to use plugin.
HandlerSocket is a NoSQL plugin for MySQL/MariaDB. It works as a daemon inside the mysqld process, accepting TCP connections, and executing requests from clients. HandlerSocket does not support SQL queries. Instead, it supports simple CRUD operations on tables.
HandlerSocket can be much faster than mysqld/libmysql in some cases because it has lower CPU, disk, and network overhead:
- To lower CPU usage it does not parse SQL.
- Next, it batch-processes requests where possible, which further reduces CPU usage and lowers disk usage.
- Lastly, the client/server protocol is very compact compared to mysql/libmysql, which reduces network usage.
-
What is MariaDB 5.3
Download MariaDB 5.3 <<style -
HandlerSocket Installation
Beginning with MariaDB 5.3.0, the HandlerSocket plugin is included in both ... -
HandlerSocket Configuration Options
The HandlerSocket plugin has the following options. Add the options to the... -
HandlerSocket Client Libraries
In order to make use of the HandlerSocket plugin in your applications, you ... -
Testing HandlerSocket in a source distribution
If you want to test or use handlersocket with a source installation of Mari... -
HandlerSocket External Resources
Some resources and documentation about HandlerSocket. The home of HandlerSo...