2017 © Pedro Peláez
 

library php-sphinxsearch

image

sokil/php-sphinxsearch

  • Tuesday, July 4, 2017
  • by sokil
  • Repository
  • 1 Watchers
  • 0 Stars
  • 35 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

php-sphinxsearch

PHP wrapper to sphinx search pecl extension. Working with search results as objects., (*1)

Installation

You need to have sphinx pecl extension installed. For Ubuntu or Debian based distributives:, (*2)

$ sudo apt-get install php5-dev php-pear libsphinxclient-dev
$ sudo pecl install sphinx

Add requirement to your composer:, (*3)

{
    "require": {
        "sokil/php-sphinxsearch": "dev-master"
    }
}

Basic Usage

$qf = new QueryFactory('127.0.0.1', '23023');

$resultSet = $qf->find()
    ->in('idx_posts')
    ->match('If you can')
    ->fetch();

The Versions

04/07 2017

dev-master

9999999-dev

  Sources   Download

MIT

The Requires

 

by Dmytro Sokil

13/03 2014

0.1

0.1.0.0

  Sources   Download

MIT

The Requires

 

by Dmytro Sokil
by Avatar sokil