我有 Elasticsearch 的附件插件来索引我存储在 Document 中的所有文件。我想将文件内容排除在 _source 中。
我的配置文件看起来像:
document:
mappings:
id: { index: not_analyzed }
path: {}
name: { boost: 5}
file:
type: attachment
store: "yes"
fields:
title: { store : "yes" }
file : {term_vector: "with_positions_offsets", store: yes}
analyzer: standard
boost: 2
persistence:
driver: orm
model: ACF\CaseBundle\Entity\Document
listener:
finder:
provider:
batch_size: 100
_source:
excludes:
file: ~
当我运行 foq:elastica:populate 时,我仍然看到“文件”属性存储在 _source 中。我无法弄清楚缺少什么。请帮忙