-
Notifications
You must be signed in to change notification settings - Fork 14
Home
Ryan Liu edited this page Jan 7, 2015
·
5 revisions
Welcome to the php-ext-handlersocketi wiki!
$hs = new HandlerSocketi('127.0.0.1', 9998);
$fields = ['id', 'username', 'age'];
$query = $hs->open_index('dbname', 'users', $fields);
$result = $query->find(5);
var_dump($result);
$options = ['index' => 'username'];
$query = $hs->open_index('dbname', 'users', $fields, $options);
$result = $query->find('ryan', ['limit' => 1, 'offset' => 0]);
var_dump($result);