Browse our Products

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.

 

GroupDocs.Search for .NET 24.4 (DLLs only)

Download   Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 236.24MB
  • Date Added:
  • 18/4/2024

Description

This ZIP file contains only the GroupDocs.Search for .NET 24.4 assemblies. The assemblies are the same as in the MSI installer of the product of the same version. Download this if you want to use GroupDocs.Search for .NET without the MSI installer. This ZIP download does not contain the demo projects.

File Details

Great news for the .NET developers! GroupDocs.Search for .NET 24.4 (DLLs only package) has been released, and it equips developers with two key features: seamless Arabic search and persistent in-memory indexes. Upgrade your Windows, Linux, and macOS-powered C# text search apps with these useful features.

Work with Arabic Alphabets in Your .NET Apps

The latest .NET text search API streamlines Arabic content indexing by automatically enabling Arabic character support within your .NET indexing apps. No manual configuration of the Alphabet dictionary is needed to use Arabic (text) content.

Save the In-Memory Indexes to Disk

You can now leverage the capability to save resource-intensive in-memory indexes to disk with GroupDocs.Search for .NET. This feature is useful for large indexes exceeding RAM capacity. The saved indexes can be loaded from disk for continued use, improving the performance and efficiency of your cross-platform applications. 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*

Public API and Backward Incompatible Changes

  • A new method Void SaveTo(System.String) is added to GroupDocs.Search.Index class.
  • A new field GroupDocs.Search.Common.IndexStatus SavingTheIndex is added to GroupDocs.Search.Common.IndexStatus enum.

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.

 English