zquintana / sun-search-bundle
Symfony Solr integration bundle
Installs: 394
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.5.9
- solarium/solarium: ^3.6
- symfony/config: ^2.3|^3.0
- symfony/dependency-injection: ^2.3|^3.0
- symfony/doctrine-bridge: ^2.3|^3.0
- symfony/http-kernel: ^2.3|^3.0
Requires (Dev)
- behat/behat: ^3.1
- doctrine/mongodb: *
- doctrine/mongodb-odm: *
- doctrine/orm: ^2.3
Suggests
- doctrine/mongodb: Required if you want to use the MongoDB ODM
- doctrine/mongodb-odm: Required if you want to use the MongoDB ODM
- doctrine/orm: Required if you want to use the Doctrine ORM
This package is auto-updated.
Last update: 2024-11-13 06:23:16 UTC
README
Introduction
This Bundle provides a simple API to index and query a Solr Index.
Installation
Installation is a quick (I promise!) 3 step process:
- Download SunSearchBundle
- Enable the Bundle
- Configure the SunSearchBundle
Step 1: Download ZQSunSearchBundle
This bundle is available on Packagist. You can install it using Composer:
$ composer require zquintana/sun-search-bundle
Step 2: Enable the bundle
Next, enable the bundle in the kernel:
<?php // app/AppKernel.php public function registerBundles() { $bundles = array( // ... new ZQ\SunSearchBundle\ZQSunSearchBundle(), ); }
Step 3: Configure the ZQSunSearchBundle
Finally, configure the bundle:
# app/config/config.yml sun_search: connections: default: host: host port: 8983 path: /solr/core0 timeout: 5 cores: corename: config_set: ~ connection: ~
Step 4: Configure your entities
To make an entity indexed, you must add some annotations to your entity. Basic configuration requires two annotations:
@Sun\Document()
, @Sun\Id()
. To index data add @Sun\Field()
to your properties.
// .... use ZQ\SunSearchBundle\Doctrine\Annotation as Sun; /** * @Sun\Document() * @ORM\Table() */ class Post { /** * @Sun\Id * * @ORM\Column(name="id", type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") */ private $id; /** * @Sun\Field(type="string") * * @ORM\Column(name="title", type="string", length=255) */ private $title = ''; /** * @Sun\Field(type="string") * * @ORM\Column(name="text", type="text") */ private $text = ''; /** * @Sun\Field(type="date", getter="format('Y-m-d\TH:i:s.z\Z')") * * @ORM\Column(name="created_at", type="datetime") */ private $created_at = null; }
Annotation reference
@Sun\Document
annotation
This annotation denotes that an entity should be indexed as a document. It has several optional properties:
repository
index
indexHandler
Setting custom repository class with repository
option
If you specify your own repository, the repository must extend the ZQ\SunSearchBundle\Repository\Repository
class.
/** * @Sun\Document(repository="My/Custom/Repository") */ class SomeEntity { // ... }
index
property
It is possible to specify a core the document will be indexed in:
/** * @Sun\Document(index="core0") */ class SomeEntity { // ... }
indexHandler
property
By default, all documents will be indexed in the core core0
. If your entities/documents have different languages, then you can setup
a callback method, which should return the core the entity will be indexed in.
/** * @Sun\Document(indexHandler="indexHandler") */ class SomeEntity { public function indexHandler() { if ($this->language == 'en') { return 'core0'; } } }
Each core must be set up in config.yml
under endpoints
. If you leave the index
or indexHandler
property empty,
then the default core will be used (first one in the endpoints
list). To index a document in all cores, use *
as index value.
@Sun\Id
annotation
This annotation is required to index an entity. The annotation has no properties. You should add this annotation to the field that will be used as the primary identifier for the entity/document.
class Post { /** * @Sun\Id * * @ORM\Column(name="id", type="integer") * @ORM\Id * @ORM\GeneratedValue(strategy="AUTO") */ private $id; }
@Sun\Field
annotation
This annotation should be added to properties that should be indexed. You should specify the type
option for the annotation.
Supported simple field types
Currently, a basic set of types is implemented:
- string(s)
- text(s)
- date(s)
- integer(s)
- float(s)
- double(s)
- long(s)
- boolean(s)
Object relations
Indexing relations works in simplified way. Related entities will not be indexed as a new document, but only as a searchable value.
Related entities do not need a @Sun\Document
annotation.
ManyToOne relation
/** * @var Category * * @Sun\Field(type="string", getter="getTitle") * * @ORM\ManyToOne(targetEntity="Acme\DemoBundle\Entity\Category", inversedBy="posts", cascade={"persist"}) * @ORM\JoinColumn(name="category_id", referencedColumnName="id") */ private $category;
Related entity:
class Category { /** * @return string */ public function getTitle() { return $this->title; } }
OneToMany relation
To index a set of objects it is important to use the fieldtype strings
.
/** * @var Tag[] * * @Sun\Field(type="strings", getter="getName") * * @ORM\OneToMany(targetEntity="Acme\DemoBundle\Entity\Tag", mappedBy="post", cascade={"persist"}) */ private $tags;
Related entity:
class Tag { /** * @return string */ public function getName() { return $this->name; } }
For more information read the more detailed "How to index relation" guide
@Sun\SynchronizationFilter(callback="shouldBeIndexed")
annotation
In some cases, an entity should not be indexed. For this, you have the SynchronizationFilter
annotation to run a filter-callback.
/** * // .... * @Sun\SynchronizationFilter(callback="shouldBeIndexed") */ class SomeEntity { /** * @return boolean */ public function shouldBeIndexed() { // put your logic here } }
The callback property specifies an callable function, which should return a boolean value, specifying whether a concrete entity should be indexed.
Queries
Query a field of a document
Querying the index is done via the sunsearch.client
service:
$query = $this->get('sunsearch.client')->createEntityQuery('AcmeDemoBundle:Post'); $query->addSearchTerm('title', 'my title'); $query->addSearchTerm('collection_field', array('value1', 'value2')); $result = $query->getResult();
or
$posts = $this->get('sunsearch.client')->getRepository('AcmeDemoBundle:Post')->findOneBy(array( 'title' => 'my title', 'collection_field' => array('value1', 'value2') ));
Query all fields of a document
The previous examples were only querying the title
field. You can also query all fields with a string.
$query = $this->get('sunsearch.client')->createEntityQuery('AcmeDemoBundle:Post'); $query->queryAllFields('my title'); $result = $query->getResult();
Define a custom query string
If you need more flexiblity in your queries you can define your own query strings:
$query = $this->get('sunsearch.client')->createEntityQuery('AcmeDemoBundle:Post'); $query->setCustomQuery('id:post_* AND (author_s:Name1 OR author_s:Name2)'); $result = $query->getResult();
Define Result-Mapping
To narrow the mapping, you can use the addField()
method.
$query = $this->get('sunsearch.client')->createEntityQuery('AcmeDemoBundle:Post'); $query->addSearchTerm('title', 'my title'); $query->addField('id'); $query->addField('text'); $result = $query->getResult();
In this case, only the id
and text
fields will be mapped (addField()), title
and created_at` fields will be
empty. If nothing was found $result is empty.
By default, the result set contains 10 rows. You can increase this value:
$query->setRows(1000000);
Configure HydrationModes
HydrationMode tells the bundle how to create an entity from a document.
ZQ\SunSearchBundle\Doctrine\Hydration\HydrationModes::HYDRATE_INDEX
- use only the data from solrZQ\SunSearchBundle\Doctrine\Hydration\HydrationModes::HYDRATE_DOCTRINE
- merge the data from solr with the entire doctrine-entity
With a custom query:
$query = $this->get('sunsearch.client')->createEntityQuery('AcmeDemoBundle:Post'); $query->setHydrationMode($mode)
With a custom document-repository you have to set the property $hydrationMode
itself:
public function find($id) { $this->hydrationMode = HydrationModes::HYDRATE_INDEX; return parent::find($id); }
Repositories
Your should define your own repository-class to make your custom queries reuseable. How to configure a repository for a document have a look at the annotation section
namespace AppBundle\Search; use ZQ\SunSearchBundle\Repository\Repository; class ProviderRepository extends Repository { public function findPost($what) { $query = $this->solr->createEntityQuery('AcmeDemoBundle:Post'); // some query-magic here return $query->getResult(); } }
Creating Cores
Creating cores via SunSearch can be done 2 ways. To do so programatically use the Core\Query located in SunSearch to create and execute a request to create the core by name with a config set.
use ZQ\SunSearchBundle\Solarium\QueryType\Core\Query; /** @var Solarium\Client $solr */ $solr = $this->getContainer()->get('sunsearch.client.adapter'); $query = $solr->createQuery(Query::TYPE); $query->createWithConfigSet($coreName, $configSet); $solr->execute($query, $endpoint);
Another ways is outlined below through the use the sunsearch:cores:create
command. This command
requires that you define the config set name as part of your cores configuration.
Commands
Here's all the commands provided by this bundle:
sunsearch:cores:create
- creates cores via configuration (only works with config sets defined.)sunsearch:index:clear
- delete all documents in the indexsunsearch:index:populate
- synchronize the db with the indexsunsearch:schema:show
- shows your configured documents
Extend Solarium
To extend Solarium with your own plugins, create a tagged service:
<tag name="solarium.client.plugin" plugin-name="yourPluginName"/>
To hook into the Solarium events create a common Symfony event-listener:
<tag name="kernel.event_listener" event="solarium.core.preExecuteRequest" method="preExecuteRequest" />