| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- fos_elastica:
- clients:
- default: { host: 'es', port: '9200' }
- indexes:
- search:
- use_alias: true
- client: default
- finder: ~
- settings:
- index:
- analysis:
- analyzer:
- search_analyzer:
- type: custom
- tokenizer: standard
- filter: [standard, asciifolding ,lowercase]
- custom_analyzer:
- type: custom
- tokenizer: standard
- filter: [standard, asciifolding ,lowercase]
- custom_search_analyzer:
- type: custom
- tokenizer: standard
- filter: [standard, asciifolding ,lowercase]
- types:
- organization:
- persistence:
- driver: orm
- model: 'App\Entity\Organization\Organization'
- listener: ~
- finder: ~
- elastica_to_model_transformer:
- ignore_missing: true
- provider: ~
- mappings:
- id:
- index: not_analyzed
- type: integer
- name:
- analyzer: custom_analyzer
- search_analyzer: custom_search_analyzer
|