You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 31, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@ Table of Contents
22
22
23
23
1.[Setup](#setup)
24
24
1.[Quick Start](#quick-start)
25
+
25
26
1.[Online documentation](#documentation)
26
27
1.[Tutorials](#tutorials)
27
28
@@ -54,6 +55,7 @@ To setup your project, follow these steps:
54
55
55
56
56
57
58
+
57
59
1. Download the latest version from **JCenter**
58
60
2. Initialize the client with your Application ID and API Key. You can find them on [your Algolia account](http://www.algolia.com/users/edit).
59
61
3. Make your Activity class implement the listener interface that you need to be able to use the asynchronous methods (APIClientListener, SearchListener, IndexingListener, ...).
@@ -301,7 +305,6 @@ You can use the following optional arguments:
301
305
* **REMOVE_NONE**: No specific processing is done when a query does not return any results (default behavior).
302
306
* **setMinWordSizeToAllowOneTypo**: The minimum number of characters in a query word to accept one typo in this word.<br/>Defaults to 4.
303
307
* **setMinWordSizeToAllowTwoTypos**: The minimum number of characters in a query word to accept two typos in this word.<br/>Defaults to 8.
304
-
* **enableTyposOnNumericTokens**: If set to false, it disables typo tolerance on numeric tokens (numbers). Defaults to false.
305
308
* **setTypoTolerance**: This option allows you to control the number of typos in the result set:
306
309
* **TYPO_TRUE**: The typo tolerance is enabled and all matching hits are retrieved (default behavior).
307
310
* **TYPO_FALSE**: The typo tolerance is disabled. For example, if one result matches without typos, then all results with typos will be hidden.
@@ -566,7 +569,7 @@ You can decide to have the same priority for two attributes by passing them in t
566
569
***advancedSyntax**:Enable the advanced query syntax. Defaults to 0 (false).
567
570
568
571
***Phrase query:** a phrase query defines a particular sequence of terms. A phrase query is build by Algolia's query parser for words surrounded by `"`. For example, `"search engine"` will retrieve records having `search` next to `engine` only. Typo-tolerance is disabled on phrase queries.
569
-
572
+
570
573
* **Prohibit operator:** The prohibit operator excludes records that contain the term after the `-` symbol. For example `search -engine` will retrieve records containing `search` but not `engine`.
571
574
* **replaceSynonymsInHighlight**: (boolean) If set to false, words matched via synonyms expansion will not be replaced by the matched synonym in the highlighted result. Default to true.
572
575
* **maxValuesPerFacet**: (integer) Limit the number of facet values returned for each facet. For example: `maxValuesPerFacet=10` will retrieve max 10 values per facet.
0 commit comments