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.5 (DLLs only)

Download   Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 236.24MB
  • Date Added:
  • 14/5/2024

Description

This ZIP file contains only the GroupDocs.Search for .NET 24.5 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

GroupDocs.Search for .NET 24.5 (DLLs only) introduces a noticeable feature: the capability to load indexes completely into memory. This DLLs package streamlines integration and search operations and refines developer experience on multiple platforms.

Learn to Load Indexes into Memory in .NET

The all new in-memory indexing functionality for your C# apps lets you load entire indexes into memory, which leads to a boost in performance for your text search queries. The following sample code highlights how to integrate this feature into your solutions using the newest release of the .NET indexing API.


string indexFolder = @"c:\MyIndex\";
string documentsFolder = @"c:\MyDocuments\";

// Creating a regular index on disk
Index index = new Index(indexFolder);

// Indexing documents from the specified folder
index.Add(documentsFolder);

// Closing the regular index
index.Dispose();

// Loading the index entirely in memory for increased performance
Index inMemoryIndex = Index.LoadIntoMemoryCompletely(indexFolder);

// Searching in the index
string query = "focus";
SearchResult result = inMemoryIndex.Search(query);

Source*

Public API and Backward Incompatible Changes

Two new methods have been added to the GroupDocs.Search.Index class in this .NET document text search API release:

  • LoadIntoMemoryCompletely(System.String)
  • LoadIntoMemoryCompletely(System.String, GroupDocs.Search.IndexSettings)

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting GroupDocs.Search for .NET 24.5 Release Notes.

 English