Can I specify what fields I want to receive from query when using HandlerSockets ?
Here is my sample table
CREATE TABLE pushed_media
(
user_id BINARY(12) NOT NULL,
story_id BINARY(12) NOT NULL,
sent_date TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL,
PRIMARY KEY ( user_id, story_id )
);
Php code that queries it is below
$hs = new HandlerSocket($host, $port);
if (!($hs->openIndex(1, $dbname, $table, HandlerSocket::PRIMARY, 'user_id,story_id,sent_date')))
{
echo $hs->getError(), PHP_EOL;
die();
}
$user_id = pack('H*', substr(md5('ruslan'), 0, 24));
$story_id = pack('H*', substr(md5('story1'), 0, 24));
$retval = $hs->executeSingle(1, '=', array($user_id, $story_id), 1, 0);
All I need is sent_date
because I already know two other values. Is it possible to not to transfer them over the network again?
You can specify the fields that you want to receive from the query by simply specifying them in the
field
parameter of the openIndex method.As you can read here, this code:
Is equivalent to the following SQL statement:
Back to your example, if you want to read only the
sent_date
field value:The resulting output should be something like this:
The HandlerSocket protocol documentation states: