Примеры

Пример #1 Примеры использования

<?php

$s 
= new SphinxClient;
$s->setServer("localhost"6712);
$s->setMatchMode(SPH_MATCH_ANY);
$s->setMaxQueryTime(3);

$result $s->query("test");

var_dump($result);

?>

Результатом выполнения данного примера будет что-то подобное:

array(10) {
  ["error"]=>
  string(0) ""
  ["warning"]=>
  string(0) ""
  ["status"]=>
  int(0)
  ["fields"]=>
  array(3) {
    [0]=>
    string(7) "subject"
    [1]=>
    string(4) "body"
    [2]=>
    string(6) "author"
  }
  ["attrs"]=>
  array(0) {
  }
  ["matches"]=>
  array(1) {
    [3]=>
    array(2) {
      ["weight"]=>
      int(1)
      ["attrs"]=>
      array(0) {
      }
    }
  }
  ["total"]=>
  int(1)
  ["total_found"]=>
  int(1)
  ["time"]=>
  float(0)
  ["words"]=>
  array(1) {
    ["to"]=>
    array(2) {
      ["docs"]=>
      int(1)
      ["hits"]=>
      int(1)
    }
  }
}

Коментарии

it is deprecated, use instead SphinxQL-Query-Builder
2015-09-22 20:16:31
http://php5.kiev.ua/manual/ru/sphinx.examples.html
SphinxQL-Query-Builder is an ORM for Sphinx.

ORM generally is for dumb developers that have no ability to write SQL complex queries.
More, ORMs are covering just 10...15% of the SQL syntax.

So, my advice, don't go with ORM in any case ...
Use the SQL syntax always:
http://sphinxsearch.com/docs/current.html#sphinxql-reference

PS:
I have seen many ORMs like Doctrine or others, but they are a joke comparing with the SQL ;)
2015-10-09 10:18:43
http://php5.kiev.ua/manual/ru/sphinx.examples.html

    Поддержать сайт на родительском проекте КГБ