kunstmaan/search-bundle

The KunstmaanSearchBundle works with ElasticSearch and supports different search providers. The bundle currently supports Elastica as a provider. Add your own objects to index using a tagged service which implements the SearchConfigurationInterface

Installs: 66 719

Dependents: 1

Suggesters: 1

Security: 0

Stars: 18

Watchers: 16

Forks: 6

Type:symfony-bundle

6.3.0 2023-05-26 14:52 UTC

README

Build Status Total Downloads Latest Stable Version Analytics

The KunstmaanSearchBundle works with ElasticSearch and supports different search providers.

More about these features can be found in our bundle documentation

Make sure you run ElasticSearch. You can download it here and extract the files. Then run the executable 'elasticsearch' in the bin directory.

Installation

composer.json

    "require": {
        "kunstmaan/search-bundle": "*"
    },

AppKernel.php:

    public function registerBundles()
    {
        $bundles = array(
            // ...
            new Kunstmaan\SearchBundle\KunstmaanSearchBundle(),
            // ...
        );

Configuration

Parameter

Add the following parameter to your parameters file (ini, yml, ...), the prefix will be automatically used before each indexname you specify.

 searchindexprefix: prefix_

Documentation

Further documentation on how to use and extend this bundle can be found here.

Reporting an issue or a feature request

Issues and feature requests are tracked in the Github issue tracker.

When reporting a bug, it may be a good idea to reproduce it in a basic project built using the Symfony Standard Edition to allow developers of the bundle to reproduce the issue by simply cloning it and following some steps.