mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-14 18:56:11 +01:00
Daniel Siepmann
efeb5d1e07
Allow integrators / developer to apply data processing concept known from FLUIDTEMPLATE to indexing.
1.1 KiB
1.1 KiB
Connections
Holds settings regarding the different possible connections for search services like Elasticsearch or Solr.
Configured as:
plugin {
tx_searchcore {
settings {
connections {
connectionName {
// the settings
}
}
}
}
}
Where connectionName
is one of the available connections
.
The following settings are available. For each setting its documented which connection consumes it.
host
Used by:
Elasticsearch
.The host, e.g.
localhost
or an IP where the search service is reachable from TYPO3 installation.Example:
plugin.tx_searchcore.settings.connections.elasticsearch.host = localhost
port
Used by:
Elasticsearch
.The port where search service is reachable. E.g. default
9200
for Elasticsearch.Example:
plugin.tx_searchcore.settings.connections.elasticsearch.port = 9200