Browse our Products Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
The latest GroupDocs.Search for .NET 24.4 (MSI) release equips developers with two key enhancements: effortless Arabic search and persistent in-memory indexes. Boost your C# text search and indexing apps running on Windows with these capabilities.
This version of the .NET document indexing API simplifies Arabic content indexing by automatically enabling Arabic character support. You will not require any manual configuration of the Alphabet dictionary to use Arabic (text) content.
Developers can now utilize the ability to save resource-intensive in-memory indexes to disk with GroupDocs.Search for .NET. This is beneficial for large indexes that exceed RAM capacity. They can load the saved indexes from disk for continued use, augmenting performance and efficiency. Here is how you can use this functionality in your C# solutions.
string indexFolder = @"c:\MyIndex\"; string documentsFolder = @"c:\MyDocuments\"; // Creating an in-memory index Index index = new Index(); // Indexing documents from the specified folder index.Add(documentsFolder); // Saving the index to disk index.SaveTo(indexFolder); // Closing the in-memory index index.Dispose(); // Opening the index from disk index = new Index(indexFolder); // Searching in the index string query = "focus"; SearchResult result = index.Search(query);
Source*
Void SaveTo(System.String)
GroupDocs.Search.Index
GroupDocs.Search.Common.IndexStatus SavingTheIndex
GroupDocs.Search.Common.IndexStatus
You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Search for .NET 24.4 Release Notes.