mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-11 08:36:11 +01:00
Daniel Siepmann
5d1e7c41bc
Do not limit integrator in possibilities to configure. Therefore previously configure facets for a field need to be adjusted to contain full configuration for elasticsearch. See changelog. Resolves: #120
48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
plugin {
|
|
tx_searchcore {
|
|
settings {
|
|
connections {
|
|
elasticsearch {
|
|
host = localhost
|
|
port = 9200
|
|
}
|
|
}
|
|
|
|
indexing {
|
|
tt_content {
|
|
indexer = Codappix\SearchCore\Domain\Index\TcaIndexer
|
|
|
|
additionalWhereClause (
|
|
tt_content.CType NOT IN ('gridelements_pi1', 'list', 'div', 'menu', 'shortcut', 'search', 'login')
|
|
AND tt_content.bodytext != ''
|
|
)
|
|
|
|
mapping {
|
|
CType {
|
|
type = keyword
|
|
}
|
|
}
|
|
}
|
|
|
|
pages {
|
|
indexer = Codappix\SearchCore\Domain\Index\TcaIndexer\PagesIndexer
|
|
abstractFields = abstract, description, bodytext
|
|
|
|
mapping {
|
|
CType {
|
|
type = keyword
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
searching {
|
|
fields {
|
|
query = _all
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
module.tx_searchcore < plugin.tx_searchcore
|