Updated How Search in 1.6 works (markdown)

Chris Li 2016-06-26 07:42:21 -04:00
parent cd2f123dc7
commit ffd28fedf7

@ -16,7 +16,7 @@ class SearchResult {
```
## Step 2: Create hash table
When performing title & indexed searches using a search term, it is likely that you may get the same article twice. We create a [title: SearchResult] or [path: SearchResult] dic/hash to get rid of article that appeared twice.
It is likely that you may get the same article twice from the search above. We create a [title: SearchResult] or [path: SearchResult] dic/hash to get rid of article that appeared twice.
In 1.6 BUILD 705, I use [title: SearchResult]. And choose to get rid of title search result and keep xapian search result if needed, since xapian results have snippets.