Returns the default value of an option. It will throw an error if no option with the given name exists.
// Get default tokenizergetDefaultValue('tokenize')// Get default term processorgetDefaultValue('processTerm')// Unknown options will throw an errorgetDefaultValue('notExisting')// => throws 'SlimSearch: unknown option "notExisting"' Copy
// Get default tokenizergetDefaultValue('tokenize')// Get default term processorgetDefaultValue('processTerm')// Unknown options will throw an errorgetDefaultValue('notExisting')// => throws 'SlimSearch: unknown option "notExisting"'
Name of the option
The default value of the given option
Returns the default value of an option. It will throw an error if no option with the given name exists.
Usage: