integrated / solr-bundle
Adds support for Solr configuration and indexing of your documents or entities
Installs: 4 179
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 1
Type:symfony-bundle
Requires
- php: >=5.5
- integrated/content-bundle: ~0.7
- integrated/library: ~0.7
- symfony/symfony: ~2.8 || ~3.0
Requires (Dev)
- phpunit/phpunit: ^5.7
- squizlabs/php_codesniffer: ^2.8
- dev-master
- 0.7.x-dev
- 0.7
- 0.6.x-dev
- 0.6
- 0.5.x-dev
- 0.5
- 0.4.x-dev
- 0.4.1.x-dev
- 0.4
- 0.3.1.x-dev
- 0.3
- 0.2.8.x-dev
- 0.2.8
- 0.2.7
- 0.2.5
- 0.2.4
- 0.2.3
- 0.2.2
- 0.2
- 0.1.1.12
- 0.1.1.11
- 0.1.1.10
- 0.1.1.9
- 0.1.1.8
- 0.1.1.7
- 0.1.1.6
- 0.1.1.5
- 0.1.1.4
- 0.1.1.3
- dev-CONCEPTCRA-3114
- dev-INTEGRATED-1002
- dev-INTEGRATED-965
- dev-INTEGRATED-1023
- dev-INTEGRATED-977
- dev-INTEGRATED-972-solr-indexer-run-hangs
- dev-INTEGRATED-955
- dev-INTEGRATED-946-implement-integrated-945-
- dev-INTEGRATED-952-dont-autosuggest-items-wh
- dev-INTEGRATED-948-implement-integrated-947
- dev-INTEGRATED-947-dont-hydrade-in-solrindex
- dev-INTEGRATED-907-solr-unit-tests-are-broke
- dev-json-solr-type
- dev-INTEGRATED-876-easy-fix-solr-indexering-
- dev-INTEGRATED-333
- dev-INTEGRATED-744-move-propertytype-and-rel
- dev-INTEGRATED-869-use-filtercontainer-by-de
- dev-INTEGRATED-829
- dev-test
- dev-INTEGRATED-802-add-json-solr-type
- dev-hotfix/priority
- dev-feature/converter-filter-container
This package is not auto-updated.
Last update: 2024-10-26 16:38:38 UTC
README
Adds support for Solr configuration and indexing of your documents or entities
Requirements
- See the require section in the composer.json
Documentation
Commands
- The command solr:indexer:queue will queue up all the documents to be indexed
- The command solr:indexer:run will tranform the queued up documents to a solr compatible format and send them to solr for indexing.
- The command solr:worker:run will start a worker run and will process up to end of the queue or 1000 tasks, whichever comes first.
It's recommended to the execute solr:indexer:run and solr:worker:run as automated tasks by configuring them as cronjobs.
Installation
This bundle can be installed following these steps:
Install using composer
$ php composer.phar require integrated/solr-bundle:~0.3
Enable the bundle
// app/AppKernel.php
public function registerBundles()
{
return array(
// ...
new Integrated\Bundle\SolrBundle\IntegratedSolrBundle()
// ...
);
}
Setup the queue
The solr bundle requires a queue to work properly, so if not already done setup the queue by executing the init:queue command.
License
This bundle is under the MIT license. See the complete license in the bundle:
LICENSE
Contributing
Pull requests are welcome. Please see our CONTRIBUTING guide.
About
This bundle is part of the Integrated project. You can read more about this project on the Integrated for developers website.