2017 © Pedro Peláez
 

symfony-bundle sphinx-search-bundle

A Symfony bundle adding wrappers and config for scorpio/sphinx-search.

image

scorpio/sphinx-search-bundle

A Symfony bundle adding wrappers and config for scorpio/sphinx-search.

  • Wednesday, February 7, 2018
  • by dredfern
  • Repository
  • 1 Watchers
  • 1 Stars
  • 57 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 6 Versions
  • 4 % Grown

The README.md

This project has been abandoned. Please switch to: foolz/sphinxql-query-builder https://github.com/FoolCode/SphinxQL-Query-Builder, (*1)

Scorpio SphinxSearchBundle

SphinxSearchBundle adds configuration and service support to Scorpio SphinxSearch, making it easier to use in a Symfony project., (*2)

Requirements

  • Symfony 3+
  • Scorpio SphinxSearch
  • for composer installs, PHP Sphinx extension

Installation

  1. The preferred method is to install via composer:, (*3)

    composer require scorpio/sphinx-search-bundle, (*4)

  2. Enable the bundle in your AppKernel:, (*5)

    // app/AppKernel.php
    
    public function registerBundles()
    {
        $bundles = array(
            // ...
            new Scorpio\SphinxSearchBundle\ScorpioSphinxSearchBundle(),
            // ...
        );
    }
    
  3. Set the configuration parameters in your config.yml, (*6)

  4. Map some indexes (see later), (*7)

Basic Usage

This bundle exposes the following configuration:, (*8)

scorpio_sphinx_search:
    host: localhost
    port: 9312
    max_query_time: 3000 # max query execution time

Optionally a specific SphinxClient class can be specified to handle the connections. This can be used if the PHP extension is not available and the SphinxQL library cannot be used., (*9)

scorpio_sphinx_search:
    client_class: SomeClass\That\Implements\SphinxClientAPI

The following services are automatically registered:, (*10)

  • scorpio_sphinx_search.server.settings (private)
  • scorpio_sphinx_search.search_manager (main search manager instance)

Indexes can be configured as services:, (*11)

services:
    my_custom_sphinx_index:
        class: Scorpio\SphinxSearch\SearchIndex
        arguments:
           - 'my_custom_sphinx_index'
           - [ 'available', 'fields', 'as_an_array' ]
           - [ 'attribute1', 'attribute2' ]

Note: the index name and fields are required and must match what is exposed in the Sphinx configuration., (*12)

Additionally the result set and result record class can also be specified:, (*13)

services:
    my_custom_sphinx_index:
        class: Scorpio\SphinxSearch\SearchIndex
        arguments:
           - 'my_custom_sphinx_index'
           - [ 'available', 'fields', 'as_an_array' ]
           - [ 'attribute1', 'attribute2' ]
           - 'MyResultSet'
           - 'MyCustomResult'

Finally, for the really lazy!, the index definition can be tagged with the custom attribute "query" set to true:, (*14)

services:
    my_custom_sphinx_index:
        tags:
            - { name: scorpio_sphinx_search.index, query: true }

And a custom query service will be automatically registered in the container. The prefix can be customised in your parameters.yml, the default if not set is "query", so the previous tag would create the service: "query.my_custom_sphinx_index"., (*15)

Note: the attribute "query" must be set to true, otherwise the index will be ignored. This allows the services to be tagged and locatable for debugging but not auto-create a query service when not needed., (*16)

In your controller you can then access the query instance:, (*17)

class MyController extends Controller
{

    function indexAction(Request $request)
    {
        // bind a search term somehow, apply filters etc. maybe check for keywords...
        $query = $this
            ->get('query.my_custom_sphinx_index')
            ->setQuery($request->query->get('keywords'));

        $results = $this->get('scorpio_sphinx_search.search_manager')->query($query);

        // do something with the results.
    }
}

License

This bundle is licensed under the BSD license. See the complete license in the bundle LICENSE file., (*18)

Issues or feature requests

Issues and feature requests should be made on the Github repository page., (*19)

The Versions

07/02 2018

dev-master

9999999-dev

A Symfony bundle adding wrappers and config for scorpio/sphinx-search.

  Sources   Download

BSD BSD-3-Clause

The Requires

 

bundle symfony sphinx sphinx search scorpio

02/09 2017

0.2.0

0.2.0.0

A Symfony bundle adding wrappers and config for scorpio/sphinx-search.

  Sources   Download

BSD

The Requires

 

bundle symfony sphinx sphinx search scorpio

15/10 2015

0.1.2

0.1.2.0

A Symfony 2 bundle adding wrappers and config for scorpio/sphinx-search.

  Sources   Download

BSD

The Requires

 

bundle symfony sphinx sphinx search scorpio

15/10 2015

dev-develop

dev-develop

A Symfony 2 bundle adding wrappers and config for scorpio/sphinx-search.

  Sources   Download

BSD

The Requires

 

bundle symfony sphinx sphinx search scorpio

29/09 2015

0.1.1

0.1.1.0

A Symfony 2 bundle adding wrappers and config for scorpio/sphinx-search.

  Sources   Download

BSD

The Requires

 

bundle symfony sphinx sphinx search scorpio

27/09 2015

0.1.0

0.1.0.0

A Symfony 2 bundle adding wrappers and config for scorpio/sphinx-search.

  Sources   Download

BSD

The Requires

 

bundle symfony sphinx sphinx search scorpio