Skip to content

Commit cb7cacd

Browse files
Update file(s) "/." from "groupdocs-search/Groupdocs.Search-References"
1 parent b39dd89 commit cb7cacd

10 files changed

Lines changed: 70 additions & 7 deletions

File tree

content/sites/groupdocs/search/english/net/groupdocs.search.dictionaries/dictionaryrepository/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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) { getset; } | Gets or sets a word forms provider. |
3031

3132
### See Also

content/sites/groupdocs/search/english/net/groupdocs.search.dictionaries/dictionaryrepository/alphabet/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
title: Alphabet
33
second_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.
55
type: docs
66
weight: 20
77
url: /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
1414
public Alphabet Alphabet { get; }
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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 -->

content/sites/groupdocs/search/english/net/groupdocs.search.dictionaries/dictionaryrepository/wordformsprovider/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: WordFormsProvider
33
second_title: GroupDocs.Search for .NET API Reference
44
description: Gets or sets a word forms provider.
55
type: docs
6-
weight: 90
6+
weight: 100
77
url: /net/groupdocs.search.dictionaries/dictionaryrepository/wordformsprovider/
88
---
99
## DictionaryRepository.WordFormsProvider property

content/sites/groupdocs/search/english/net/groupdocs.search.dictionaries/dictionarytype/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

content/sites/groupdocs/search/english/net/groupdocs.search.scaling/indexer/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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)(DictionaryBaseint) | Sets a dictionary in the specified shard. |
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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 -->

content/sites/groupdocs/search/english/net/groupdocs.search.scaling/indexer/optimize/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Optimize
33
second_title: GroupDocs.Search for .NET API Reference
44
description: Minimizes the number of index segments by merging them one with another. This operation improves search performance.
55
type: docs
6-
weight: 170
6+
weight: 180
77
url: /net/groupdocs.search.scaling/indexer/optimize/
88
---
99
## Indexer.Optimize method

content/sites/groupdocs/search/english/net/groupdocs.search.scaling/indexer/setdictionary/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: SetDictionary
33
second_title: GroupDocs.Search for .NET API Reference
44
description: Sets a dictionary in the specified shard.
55
type: docs
6-
weight: 180
6+
weight: 190
77
url: /net/groupdocs.search.scaling/indexer/setdictionary/
88
---
99
## SetDictionary(DictionaryBase, int) {#setdictionary_1}

content/sites/groupdocs/search/english/net/groupdocs.search.scaling/indexer/synchronize/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Synchronize
33
second_title: GroupDocs.Search for .NET API Reference
44
description: 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.
55
type: docs
6-
weight: 190
6+
weight: 200
77
url: /net/groupdocs.search.scaling/indexer/synchronize/
88
---
99
## Indexer.Synchronize method

0 commit comments

Comments
 (0)