我的config.yml中有以下内容:
# other settings...
fos_elastica:
clients:
default: { host: localhost, port: 9200 }
indexes:
homestead:
types:
volunteer:
mappings:
firstName: ~
lastName: ~
username: ~
persistence:
driver: orm
model: AppBundle\Entity\Volunteer
provider: ~
listener:
immediate: ~
logger: true
finder: ~
elastica_to_model_transformer:
ignore_missing: true
# more other settings...
我想知道如何预定义持久性,以便我可以重复使用它,而不是将其添加到每个实体。
其次我想知道我怎么能把它放在一个完全不同的文件中