dachcom-digital/dynamic-search-index-provider-lucene
Composer 安装命令:
composer require dachcom-digital/dynamic-search-index-provider-lucene
包简介
README 文档
README
Important
This bundle will not be compatible with Pimcore 12 or any future Pimcore versions.
For all future development, updates, and documentation, please refer to opendxp.io:
- Access the latest info here: https://www.opendxp.io/en/bundles
- Migration of Dachcom Digital Bundles: https://www.opendxp.io/en/dachcom-bundles
Note: We are open to partnerships for those interested in porting this bundle to future versions.
For inquiries, please contact: dcdi@dachcom.ch
An index storage extension for Pimcore Dynamic Search. Store data with the PHP Lucene index service.
Release Plan
| Release | Supported Pimcore Versions | Supported Symfony Versions | Release Date | Maintained | Branch |
|---|---|---|---|---|---|
| 3.x | 11.0 |
^6.4 |
28.09.2023 | Feature Branch | master |
| 2.x | 10.0 - 10.6 |
^5.4 |
19.12.2021 | No | 2.x |
| 1.x | 6.6 - 6.9 |
^4.4 |
18.04.2021 | No | 1.x |
Installation
"require" : { "dachcom-digital/dynamic-search" : "~3.0.0", "dachcom-digital/dynamic-search-index-provider-lucene" : "~3.0.0" }
Dependencies
This package will also install a fork of ZendSearch to provide the latest PHP compatibility.
Dynamic Search Bundle
You need to install / enable the Dynamic Search Bundle first. Read more about it here. After that, proceed as followed:
Add Bundle to bundles.php:
<?php return [ \DsLuceneBundle\DsLuceneBundle::class => ['all' => true], ];
Basic Setup
dynamic_search: context: default: index_provider: service: 'lucene' options: database_name: 'my_lucene_storage'
Provider Options
| Name | Default Value | Description |
|---|---|---|
database_name |
null | |
force_adding_document |
true | |
analyzer |
[] |
Index Fields
Available Index Fields:
| Name | Description |
|---|---|
binary |
Binary fields are not tokenized or indexed, but are stored for retrieval with search hits. They can be used to store any data encoded as a binary string, such as an image icon. |
keyword |
Keyword fields are stored and indexed, meaning that they can be searched as well as displayed in search results. They are not split up into separate words by tokenization. |
text |
Text fields are stored, indexed, and tokenized. Text fields are appropriate for storing information like subjects and titles that need to be searchable as well as returned with search results. |
unIndexed |
UnIndexed fields are not searchable, but they are returned with search hits. Database timestamps, primary keys, file system paths, and other external identifiers are good candidates for UnIndexed fields. |
unStored |
UnStored fields are tokenized and indexed, but not stored in the index. Large amounts of text are best indexed using this type of field. Storing data creates a larger index on disk, so if you need to search but not redisplay the data, use an UnStored field. |
Output Channel Services
Autocomplete
Identifier: lucene_autocomplete
Available Options:
| Name | Default Value | Description |
|---|---|---|
min_prefix_length |
3 | |
use_fuzzy_term_search_fallback |
true | |
fuzzy_default_prefix_length |
||
fuzzy_similarity |
0.5 |
Suggestions
Identifier: lucene_suggestions
Available Options:
| Name | Default Value | Description |
|---|---|---|
min_prefix_length |
3 | |
result_limit |
10 | |
only_last_word_wildcard |
false | |
multiple_words_operator |
'OR' | |
restrict_search_fields |
[] | |
restrict_search_fields_operator |
'OR' |
Search
Identifier: lucene_search
Available Options:
| Name | Default Value | Description |
|---|---|---|
min_prefix_length |
3 | |
max_per_page |
10 |
Multi Search
Identifier: lucene_multi_search
Available Options: none
Filter
RelationsFilter
Identifier: relations
Available Options:
| Name | Default Value | Allowed Type | Description |
|---|---|---|---|
identifier |
null | string | |
value |
null | string | |
label |
null | string, null | |
show_in_frontend |
true | bool | |
relation_label |
null | closure, null |
Output Normalizer
A Output Normalizer can be defined for each output channel.
lucene_document_key_value_normalizer
Available Options:
| Name | Default Value | Description |
|---|---|---|
skip_fields |
[] |
Further Information
- Lucene Configuration
- Custom Analyzer (Example: Syllable Analyzer)
- Lucene Token Filter (Stemming Filter, Stop Words Filter)
- Debugging (Debugging Lucene Index Database)
Upgrade Info
Before updating, please check our upgrade notes!
License
DACHCOM.DIGITAL AG, Löwenhofstrasse 15, 9424 Rheineck, Schweiz
dachcom.com, dcdi@dachcom.ch
Copyright © 2025 DACHCOM.DIGITAL. All rights reserved.
For licensing details please visit LICENSE.md
统计信息
- 总下载量: 66.59k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-or-later
- 更新时间: 2019-06-12