search_core/Documentation/source/concepts.rst
Daniel Siepmann 3553c443e2
FEATURE: Adjust configuration structure
* To support further configuration, specific to identifiers / tables.
* E.g. mapping and boost configuration should be possible.
* Adjust docs and settings.
* Adjust tests and code.
2017-06-27 16:51:33 +02:00

903 B

Concepts

The extension is built with the following concepts in mind.

Connections

It should be possible to use different search services like elasticsearch and solr out of the box. If a service is not contained, it should be possible to implement the necessary part by implementing the necessary interfaces and configuring the extension to use the new connection.

Also it should be possible to use multiple connections at once. This way multiple search services can be used in the same installation.

Currently only Elasticsearch is provided.

Indexing

The indexing is done by one of the available indexer. It should be possible to define the indexer to use for certain document types. Also it should be possible to write custom indexer to use.

Currently only the TcaIndexer is provided.