An open API service indexing awesome lists of open source software.

https://github.com/paunin/yiisolrbehavior

YiiSolrBehavior
https://github.com/paunin/yiisolrbehavior

Last synced: 30 days ago
JSON representation

YiiSolrBehavior

Awesome Lists containing this project

README

          

YiiSolrBehavior Usage
===============

Require https://github.com/phpnode/YiiSolr

public function behaviors()
{
return array(
...
'solr' => array(
'class' => 'ext.behaviors.SolrBehavior.SolrBehavior',
'instanceClass' => 'ContentSolr',
'fieldsMap' => array(
'slug' => 'slug',
'title' => 'title&name',
'title+text' => 'text'
)
)
...

);

}