Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cmourizard/323645f1731e0f602c11 to your computer and use it in GitHub Desktop.
Save cmourizard/323645f1731e0f602c11 to your computer and use it in GitHub Desktop.
Elasticsearch configuration to enable asciifolding
<?php
$sugar_config['full_text_engine']['Elastic']['index_settings']['default']['index'] = array(
'analysis' => array(
'analyzer' => array(
'core_email_lowercase' => array(
'type' => 'custom',
'tokenizer' => 'uax_url_email',
'filter' => array(
'lowercase',
),
),
'standard' => array(
'type' => 'custom',
'tokenizer' => 'standard',
'filter' => array(
'asciifolding',
'lowercase',
),
),
),
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment