dev-master
9999999-devSphinx Search plugin for CakePHP
The Requires
Wallogit.com
2017 © Pedro Peláez
Sphinx Search plugin for CakePHP
Updated to further maintain., (*1)
Derived version from the Sphinx Behavior by @nabeelio, (*2)
Updated version for the Sphinx Behavior by Vilen Tambovtsev, (*3)
I've updated this for Cake2.0, and also so it runs one query to Sphinx, instead of two (one for results, one for count), (*4)
Also makes the search results that are returned from Sphinx available to the model (I use this to build filters for search), (*5)
The original usage page is here:, (*6)
http://bakery.cakephp.org/articles/xumix/2009/07/11/sphinx-behavior, (*7)
[Manual], (*8)
app/Plugin
SphinxCakephp
[Composer], (*9)
in the composer.json file of your project add, (*10)
"repositories":
[
{
"type": "vcs",
"url": "https://github.com/nabeelio/Sphinx-CakePHP"
}
],
"require":{
"nabeelio/sphinx-cakephp": "dev-master"
}
The plugin will be installed in your Plugin directory., (*11)
Make sure the plugin is loaded in app/Config/bootstrap.php., (*12)
CakePlugin::load('SphinxCakephp');
Sphinx Search plugin for CakePHP