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.
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.
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*
Two new methods have been added to the GroupDocs.Search.Index class in this .NET document text search API release:
GroupDocs.Search.Index
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.