Home
last modified time | relevance | path

Searched refs:_sphinx (Results 1 – 3 of 3) sorted by relevance

/plugin/sphinxsearch/
DSphinxSearch.php9 private $_sphinx = null; variable in SphinxSearch
25 $this->_sphinx = new SphinxClient();
26 $this->_sphinx->SetServer($host, $port);
27 $this->_sphinx->SetMatchMode(SPH_MATCH_EXTENDED2);
34 $keywords = $this->_sphinx->EscapeString($keywords);
42 $keywords = $this->_sphinx->EscapeString($keywords);
53 $keywords = $this->_sphinx->EscapeString($keywords);
74 $this->_sphinx->SetFieldWeights(array(
81 $this->_sphinx->SetLimits($start, $resultsPerPage+100, 1000);
83 $this->_result = $this->_sphinx->Query($this->_query, $this->_index);
[all …]
/plugin/sphinxsearch-was/
H A DSphinxSearch.php9 private $_sphinx = null; variable in SphinxSearch
25 $this->_sphinx = new SphinxClient();
26 $this->_sphinx->SetServer($host, $port);
27 $this->_sphinx->SetMatchMode(SPH_MATCH_EXTENDED2);
34 $keywords = $this->_sphinx->EscapeString($keywords);
42 $keywords = $this->_sphinx->EscapeString($keywords);
53 $keywords = $this->_sphinx->EscapeString($keywords);
73 $this->_sphinx->SetFieldWeights(
82 $this->_sphinx->SetLimits($start, $resultsPerPage + 100, 1000);
84 $this->_result = $this->_sphinx->Query($this->_query, $this->_index);
[all …]
/plugin/sphinxsearchwas/
DSphinxSearch.php10 private SphinxClient $_sphinx; variable in SphinxSearch
29 $this->_sphinx = new SphinxClient();
30 $this->_sphinx->SetServer($this->_host, $this->_port);
31 $this->_sphinx->SetMatchMode(SPH_MATCH_EXTENDED2);
40 $this->_sphinx->SetFieldWeights([
46 $this->_sphinx->SetLimits($start, $resultsPerPage + 50);
47 $res = $this->_sphinx->Query($this->_query, $this->_index);
180 public function getError(): string { return $this->_sphinx->GetLastError(); }
187 $esc = $this->_sphinx->EscapeString($k);
191 $esc = $this->_sphinx->EscapeString($k);
[all …]