HandlerSocket-Plugin-for-MySQL
HandlerSocket-Plugin-for-MySQL copied to clipboard
HandlerSocket is a NoSQL plugin for MySQL, working as a daemon inside the mysqld process, to accept tcp connections, and execute requests from clients. HandlerSocket does not support SQL queries; inst...
Or another question, how can I update timestamp value with CURRENT_TIMESTAMP()? Many thanks!
when i compile handlersocket with mariadb 5.2.5 it produces this error on make /root/mariadb-5.2.5/sql/handler.h:1577: error: 'virtual int handler::index_read_map(uchar_, const uchar_, key_part_map, ha_rkey_function)' is protected database.cpp:806: error: within this context /root/mariadb-5.2.5/sql/handler.h:1577:...
I'm having a problem where specifying a UNIX socket as the port parameter in my.cnf creates sockets that aren't read/writable by "other", only by user and group, i.e. `srwxrwx--x`. This...
Should it work? For example, I do following: > CREATE TABLE test (id INT PRIMARY KEY AUTO_INCREMENT, value INT UNIQUE); > INSERT INTO test VALUES (10,15); Index on value is...
hstcpsvr_worker.cpp:17:23: error: sys/epoll.h: No such file or directory hstcpsvr_worker.cpp:245: error: 'epoll_event' was not declared in this scope of course there is no epoll under freebsd, but nice kqueue is here....
I would like to see default authentication for HandlerSocket. Basically, allow HS clients to use no authentication, but have the HS plugin use some default credentials when determining which tables...
Since mysql doesn't support reverse indexes, being able to control whether the results returned by HandlerSocket are returned in ascending/descending order would be a huge improvement to its usability. Right...
Environment: MySQL server : Percona 5.1.55, default with handlersocket client: python2.5 ,with pyhs you can reproduce the problem : 1. CREATE TABLE `file`.`test` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT,...
It would be awesome if HandlerSocket supports IN query. Most of the time an app fetches data for a list of primary keys. Is handlersocket going to support IN anytime...
According to ahiguti/HandlerSocket-Plugin-for-MySQL@43545662ddc23faa90abc093c00a592e9cbed6ba plaintext authentication is supported by HandlerSocket (using the configuration options handlersocket_plain_secret and handlersocket_plain_secret_wr, and the "A 1 PASSWORD" command). Could this be added to the configuration and...