Skip to content

Commit 33c543f

Browse files
committed
Add postfix wildcard
1 parent 2cc2e12 commit 33c543f

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,15 @@ Fuzzy matching is used for typo tolerance. There are four options:
9898
client.setFuzzyMatch(false);
9999
```
100100

101+
#### Postfix wildcard
102+
Enable or disable postfix wildcard. I.e. should keyword "add" match to "addsearch" or should it just match to the
103+
term **add**
104+
105+
```js
106+
// Possible values true/false (default: true)
107+
client.setPostfixWildcard(false);
108+
```
109+
101110
### Pagination
102111
Set page number, page size and sorting parameters. It's possible to order results by:
103112
- relevance (descending)

0 commit comments

Comments
 (0)