Dynamic Search Bundle

| Release | Supported OpenDXP Versions | Supported Symfony Versions | Release Date | Maintained | Branch |
|---|---|---|---|---|---|
| 1.x | 1.0 | ^7.4 | 2025 | Feature Branch | 1.x |
Introduction
The Dynamic Search Bundle allows you to redefine your search strategy. It's based on several data- and index providers.
Providers
There are several data- and index providers available:
Data Provider
- Trinity Data | Fetch opendxp entities: object, asset, document
Index Provider
- Open Search | Index data with an open search instance.
- Lucene Search | Use the php lucene index. Not superfast but comes without any dependencies but php [legacy, not recommended]
Installation
"require" : {
"open-dxp/dynamic-search-bundle" : "~1.0.0"
}
Add Bundle to bundles.php:
return [
OpenDxp\Bundle\DynamicSearchBundle\OpenDxpDynamicSearchBundle::class => ['all' => true],
];
- Execute:
$ bin/console opendxp:bundle:install OpenDxpDynamicSearchBundle - Execute optionally:
$ bin/console messenger:setup-transports
Upgrading
- Execute:
$ bin/console doctrine:migrations:migrate --prefix 'OpenDxp\Bundle\DynamicSearchBundle'
Provider Installation
You need at least one data- and one index provider. They have to be installed separately. Please check out install instruction of each provider (see list above).
Add Routes
# config/routes.yaml
dynamic_search_frontend:
resource: '@OpenDxpDynamicSearchBundle/config/opendxp/routing/frontend_routing.yaml'
Start Queue Worker
$ bin/console messenger:consume dynamic_search_queue
Read more details about the queue worker and the recommended setup here.
Dispatch Dynamic Search
After you've added a definition, you're ready to start the engine.
Always use the verbose -v flag, otherwise you won't get any process information about the ongoing data / index providing process.
$ bin/console dynamic-search:run -v
Further Information

- Example Setup
- Dispatch Workflow
- Configuration
- Context Guard
- Document Definition
- Logging
- Data Creation
- Resource Validation
- Enable automatic Update / Insert / Delete Service
- Data Fetching
- Output Channels
- Create Output Channel
- Channel Filter / Actions
- Multi Search Channels
- Filter (Faceted Search / Aggregation)
- Create Filter Definition
- Output Channels
- Backend UI
- API
Upgrade Info
Before updating, please check our upgrade notes!
License
DACHCOM.DIGITAL AG, Löwenhofstrasse 15, 9424 Rheineck, Schweiz
dachcom.com, [email protected]
Copyright © 2025 DACHCOM.DIGITAL. All rights reserved.
For licensing details please visit LICENSE.md