API Reference / API Parameters / camelCaseAttributes
Type: list of strings
Engine default: []
Parameter syntax
'camelCaseAttributes' => [
  'attribute',
  ...
]

Can be used in these methods:
setSettings

About this parameter# A

List of attributes on which to do a decomposition of camel case words.

Camel case compounds are basically words glued together, and being able to find a camel case compound when searching for one of its words often makes sense. This setting automatically splits camel case compounds into separate words and allows for example to find "camelCaseAttributes" when searching for "case".

Examples# A

Set the attributes to enable camel case decomposition#

1
2
3
4
5
$index->setSettings([
  'camelCaseAttributes' => [
    'description'
  ]
]);
Did you find this page helpful?
PHP v3