From 06596943386a376f7689dc39f90e8eab5d939b93 Mon Sep 17 00:00:00 2001 From: Josh Duff Date: Fri, 1 Feb 2019 14:53:46 -0600 Subject: [PATCH 1/4] Fix link to "Async Search" heading --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3095e38..0679405 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ All Features: - Async Processing + Async Search x x @@ -610,6 +610,7 @@ Limit the result: index.search("John", 10); ``` + #### Async Search Perform queries asynchronously: From c6148bbfe7f2f2cb45602afa0be462e281856ac5 Mon Sep 17 00:00:00 2001 From: Robin Millette Date: Fri, 1 Feb 2019 20:18:55 -0500 Subject: [PATCH 2/4] Fix link (anchor) to Enable Contextual Scoring --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3095e38..a7b8072 100644 --- a/README.md +++ b/README.md @@ -388,7 +388,7 @@ In this way contextual search

-__Note:__ This feature is actually not enabled by default. Read
here how to enable. +__Note:__ This feature is actually not enabled by default. Read here how to enable. #### Compare BulkSearch vs. FlexSearch From c7003305d29cda09139eb1b9fe9a123c7b0ac053 Mon Sep 17 00:00:00 2001 From: 0xflotus <0xflotus@gmail.com> Date: Sat, 2 Feb 2019 02:22:44 +0100 Subject: [PATCH 3/4] fixed small errors --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3095e38..6ba3ea2 100644 --- a/README.md +++ b/README.md @@ -426,7 +426,7 @@ __Note:__ This feature is actually not enabled by default. Read +
  • updating / deleting existing items from index is slow
  • adding items to the index optimized for super partial matching (tokenize: "full") is slow
@@ -1067,7 +1067,7 @@ FlexSearch ist highly customizable. Make use of the the
righ tokenize




"strict"
- "foward"
+ "forward"
"reverse"
"full"
@@ -1209,7 +1209,7 @@ Tokenizer effects the required memory also as query time and flexibility of part --> - "foward" + "forward" incrementally index words in forward direction foobar
foobar
* n @@ -1563,7 +1563,7 @@ Compare these presets: __Split Complexity__ -Whenenver you can, try to divide content by categories and add them to its own index, e.g.: +Whenever you can, try to divide content by categories and add them to its own index, e.g.: ```js var feeds_2017 = new FlexSearch(); var feeds_2018 = new FlexSearch(); From b8d55c5d41eb342d4a16f71cc4a422e9b463c18b Mon Sep 17 00:00:00 2001 From: Amine Mouafik Date: Sat, 2 Feb 2019 13:46:21 +0700 Subject: [PATCH 4/4] fix(readme): broken link on mention of bulksearch --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3095e38..67f5366 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@

Web's fastest and most memory-flexible full-text search library with zero dependencies.

When it comes to raw search speed
FlexSearch outperforms every single searching library out there and also provides flexible search capabilities like multi-word matching, phonetic transformations or partial matching. -Depending on the used options it also providing the most memory-efficient index. Keep in mind that updating and/or removing existing items from the index has a significant cost. When your index needs to be updated very often then BulkSearch may be a better choice. +Depending on the used options it also providing the most memory-efficient index. Keep in mind that updating and/or removing existing items from the index has a significant cost. When your index needs to be updated very often then BulkSearch may be a better choice. FlexSearch also provides you a non-blocking asynchronous processing model as well as web workers to perform any updates or queries on the index in parallel through dedicated balanced threads. Installation Guide  •  API Reference  •  Example Options  •  Custom Builds  •  Flexsearch Server