File tree Expand file tree Collapse file tree
groupdocs.search.dictionaries
groupdocs.search.scaling/indexer
gettokenizationdictionary Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,13 +19,14 @@ public class DictionaryRepository
1919| Name | Description |
2020| --- | --- |
2121| [AliasDictionary](../../groupdocs.search.dictionaries/dictionaryrepository/aliasdictionary) { get; } | Gets a dictionary of aliases . |
22- | [Alphabet ](.. / .. / groupdocs .search .dictionaries / dictionaryrepository / alphabet ) { get ; } | Gets a dictionary of characters . |
22+ | [Alphabet ](.. / .. / groupdocs .search .dictionaries / dictionaryrepository / alphabet ) { get ; } | Gets the dictionary of characters used by the internal tokenization mechanism to split text into words . |
2323| [CharacterReplacements ](.. / .. / groupdocs .search .dictionaries / dictionaryrepository / characterreplacements ) { get ; } | Gets a dictionary of character replacements . |
2424| [DocumentPasswords ](.. / .. / groupdocs .search .dictionaries / dictionaryrepository / documentpasswords ) { get ; } | Gets a dictionary of document passwords . |
2525| [HomophoneDictionary ](.. / .. / groupdocs .search .dictionaries / dictionaryrepository / homophonedictionary ) { get ; } | Gets a dictionary of homophones . |
2626| [SpellingCorrector ](.. / .. / groupdocs .search .dictionaries / dictionaryrepository / spellingcorrector ) { get ; } | Gets a spelling corrector . |
2727| [StopWordDictionary ](.. / .. / groupdocs .search .dictionaries / dictionaryrepository / stopworddictionary ) { get ; } | Gets a dictionary of stop words . |
2828| [SynonymDictionary ](.. / .. / groupdocs .search .dictionaries / dictionaryrepository / synonymdictionary ) { get ; } | Gets a dictionary of synonyms . |
29+ | [TokenizationDictionary ](.. / .. / groupdocs .search .dictionaries / dictionaryrepository / tokenizationdictionary ) { get ; } | Gets the dictionary of characters that defines whether a token is considered as a valid word or a separator when using external tokenization tools. |
2930| [WordFormsProvider ](.. / .. / groupdocs .search .dictionaries / dictionaryrepository / wordformsprovider ) { get ; set ; } | Gets or sets a word forms provider . |
3031
3132### See Also
Original file line number Diff line number Diff line change 11---
22title : Alphabet
33second_title : GroupDocs.Search for .NET API Reference
4- description : Gets a dictionary of characters.
4+ description : Gets the dictionary of characters used by the internal tokenization mechanism to split text into words .
55type : docs
66weight : 20
77url : /net/groupdocs.search.dictionaries/dictionaryrepository/alphabet/
88---
99## DictionaryRepository.Alphabet property
1010
11- Gets a dictionary of characters.
11+ Gets the dictionary of characters used by the internal tokenization mechanism to split text into words .
1212
1313``` csharp
1414public Alphabet Alphabet { get ; }
Original file line number Diff line number Diff line change 1+ ---
2+ title : TokenizationDictionary
3+ second_title : GroupDocs.Search for .NET API Reference
4+ description : Gets the dictionary of characters that defines whether a token is considered as a valid word or a separator when using external tokenization tools.
5+ type : docs
6+ weight : 90
7+ url : /net/groupdocs.search.dictionaries/dictionaryrepository/tokenizationdictionary/
8+ ---
9+ ## DictionaryRepository.TokenizationDictionary property
10+
11+ Gets the dictionary of characters that defines whether a token is considered as a valid word or a separator when using external tokenization tools.
12+
13+ ``` csharp
14+ public Alphabet TokenizationDictionary { get ; }
15+ ```
16+
17+ ### Property Value
18+
19+ The dictionary of characters.
20+
21+ ### See Also
22+
23+ * class [ Alphabet] ( ../../alphabet )
24+ * class [ DictionaryRepository] ( ../../dictionaryrepository )
25+ * namespace [ GroupDocs.Search.Dictionaries] ( ../../../groupdocs.search.dictionaries )
26+ * assembly [ GroupDocs.Search] ( ../../../ )
27+
28+ <!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.search.dll -->
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ title: WordFormsProvider
33second_title : GroupDocs.Search for .NET API Reference
44description : Gets or sets a word forms provider.
55type : docs
6- weight : 90
6+ weight : 100
77url : /net/groupdocs.search.dictionaries/dictionaryrepository/wordformsprovider/
88---
99## DictionaryRepository.WordFormsProvider property
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ public enum DictionaryType
2626| SpellingCorrector | `5` | The spelling corrector. |
2727| StopWordDictionary | `6` | The stop word dictionary. |
2828| PasswordDictionary | `7` | The password dictionary. |
29+ | TokenizationDictionary | `8` | The tokenization dictionary. |
2930
3031### See Also
3132
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ public sealed class Indexer
4040| [GetSpellingCorrector ](.. / .. / groupdocs .search .scaling / indexer / getspellingcorrector )(int ) | Gets the spelling corrector dictionary . |
4141| [GetStopWordDictionary ](.. / .. / groupdocs .search .scaling / indexer / getstopworddictionary )(int ) | Gets the stop word dictionary . |
4242| [GetSynonymDictionary ](.. / .. / groupdocs .search .scaling / indexer / getsynonymdictionary )(int ) | Gets the synonym dictionary . |
43+ | [GetTokenizationDictionary ](.. / .. / groupdocs .search .scaling / indexer / gettokenizationdictionary )(int ) | Gets the tokenization dictionary . |
4344| [Optimize ](.. / .. / groupdocs .search .scaling / indexer / optimize )(OptimizeOptions ) | Minimizes the number of index segments by merging them one with another . This operation improves search performance . |
4445| [SetDictionary ](.. / .. / groupdocs .search .scaling / indexer / setdictionary #setdictionary )(DictionaryBase ) | Sets a dictionary in all shards . |
4546| [SetDictionary ](.. / .. / groupdocs .search .scaling / indexer / setdictionary #setdictionary_1 )(DictionaryBase , int ) | Sets a dictionary in the specified shard . |
Original file line number Diff line number Diff line change 1+ ---
2+ title : GetTokenizationDictionary
3+ second_title : GroupDocs.Search for .NET API Reference
4+ description : Gets the tokenization dictionary.
5+ type : docs
6+ weight : 170
7+ url : /net/groupdocs.search.scaling/indexer/gettokenizationdictionary/
8+ ---
9+ ## Indexer.GetTokenizationDictionary method
10+
11+ Gets the tokenization dictionary.
12+
13+ ``` csharp
14+ public Alphabet GetTokenizationDictionary (int shardIndex )
15+ ```
16+
17+ | Parameter | Type | Description |
18+ | --- | --- | --- |
19+ | shardIndex | Int32 | The shard index. |
20+
21+ ### Return Value
22+
23+ The dictionary.
24+
25+ ### See Also
26+
27+ * class [ Alphabet] ( ../../../groupdocs.search.dictionaries/alphabet )
28+ * class [ Indexer] ( ../../indexer )
29+ * namespace [ GroupDocs.Search.Scaling] ( ../../../groupdocs.search.scaling )
30+ * assembly [ GroupDocs.Search] ( ../../../ )
31+
32+ <!-- DO NOT EDIT: generated by xmldocmd for GroupDocs.search.dll -->
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ title: Optimize
33second_title : GroupDocs.Search for .NET API Reference
44description : Minimizes the number of index segments by merging them one with another. This operation improves search performance.
55type : docs
6- weight : 170
6+ weight : 180
77url : /net/groupdocs.search.scaling/indexer/optimize/
88---
99## Indexer.Optimize method
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ title: SetDictionary
33second_title : GroupDocs.Search for .NET API Reference
44description : Sets a dictionary in the specified shard.
55type : docs
6- weight : 180
6+ weight : 190
77url : /net/groupdocs.search.scaling/indexer/setdictionary/
88---
99## SetDictionary(DictionaryBase, int) {#setdictionary_1}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ title: Synchronize
33second_title : GroupDocs.Search for .NET API Reference
44description : Synchronizes the list of indexed documents with those on shards. This operation fixes issues with indexing and deletion of documents that resulted from communication problems with the search network nodes.
55type : docs
6- weight : 190
6+ weight : 200
77url : /net/groupdocs.search.scaling/indexer/synchronize/
88---
99## Indexer.Synchronize method
You can’t perform that action at this time.
0 commit comments