diff --git a/README.md b/README.md index 4c2e838..a9fb902 100644 --- a/README.md +++ b/README.md @@ -37,11 +37,200 @@ of Ajax with views (powered by Solr), search blocks, facets, and search results. The module provides Boolean search, enables you to use AND, OR or NOT options to helps expanding or narrowing your search parameters. - +
| + |
+ Standard Query Parser + |
+
+ The Extended DisMax (eDismax) Query Parser + |
+
|
+ Use + |
+
+ If Edimax is turned off in configuration, the “Standard Query Parser” is used. + |
+
+ Edismax is enabled by default, but can be turned off in configuration (/admin/config/search/advanced). + |
+
|
+ Capacity + |
+
+
|
+
+
|
+
|
+ Search + |
+
+ Content indexed into a string field +
+ Content indexed into a full-text field +
|
+
+ Content indexed into a string field +
+ Content indexed into a full-text field +
|
+
|
+ Operator + |
+
+ Usage + |
+
+ Example + |
+
|
+ AND + |
+
+ Narrow down your search to include results that contain both search terms + |
+
+ orientation AND games + |
+
|
+ OR + |
+
+ Broaden your search to include results that contain either search term + |
+
+ students OR undergraduates + |
+
|
+ NOT + |
+
+ Narrow your search by excluding certain words or phrases + |
+
+ orientation NOT games + |
+
|
+ Asterisk (*) + |
+
+ Replaces the asterisk with multiple characters. Use to search for multiple beginnings, middles, and endings of words. + |
+
+ librar* ++ will include results like: +
|
+
|
+ Question Mark (?) + |
+
+ Replaces the question mark with a single character. Use to search for multiple beginnings, middles, and endings of words. + |
+
+ ?est ++ will include results like: +
+ Will not include: +
|
+
|
+ Tilde (~) + |
+
+ Use to make your search ‘fuzzy’ or search for synonyms and alternate spellings. ++ Only works for Keyword search. + |
+
+ Shaun~ ++ will include results like: +
|
+
|
+ Quotation Marks (“”) + |
+
+ Use quotation marks to search for a specific word or phrase. + |
+
+ “alumni golf tournament” + |
+
## Requirements