Sort Score
Result 10 results
Languages All
Labels All
Results 371 - 380 of 16,339 for

query

(0.05 sec)
  1. Boost Search Performance in C# Apps - Search AP...

    Supercharge C# search apps with GroupDocs.Search .NET 24.5 (MSI). This update offers in-memory index loading for faster performance. Download now!...performance for your search queries. The following sample code...Searching in the index string query = "focus" ; SearchResult result...

    releases.groupdocs.com/search/net/new-releases/...
  2. Homophone search online

    Homophone search in document. Perform homophone search of words and phrases online.... × 15% Search query Homophone search Try other Search...of a homophone search is the query "some", for which the words...

    products.groupdocs.app/search/homophone
  3. WordPattern - GroupDocs.Search for Java - API R...

    All Classes Packages com.groupdocs.search com.groupdocs.search.common com.groupdocs.search.dictionaries com.groupdocs......pattern) Creates a word pattern query. Uses of WordPattern in com...

    apireference.groupdocs.com/search/java/com.grou...
  4. New to GroupDocs search - Free Support Forum - ...

    I have created a basic Java application which creates an index, adds documents to index and executes a Query for a word. All looks good and using the highlighting example html files are opened. I have a a couple of ques…...documents to index and executes a query for a word. All looks good and...When we pass a search string/query to the API, it will return all...

    forum.groupdocs.com/t/new-to-groupdocs-search/1...
  5. Boost Search Performance in C# Apps - Search AP...

    Build advanced C# search apps with GroupDocs.Search .NET 24.5 (DLLs). This update offers in-memory index loading for faster performance. Download now!...performance for your text search queries. The following sample code...Searching in the index string query = "focus" ; SearchResult result...

    releases.groupdocs.com/search/net/new-releases/...
  6. Search for different word forms | Documentation

    This article shows that how to allow you to search for nouns in the singular or plural, adjectives in the degree of comparison, forms of regular and irregular verbs, etc....Searching in the index const query = 'wished' ; const result =...= index . search ( query , options ); // The following words can...

    docs.groupdocs.com/search/nodejs-java/search-fo...
  7. .NET Indexing API 24.4 MSI - Arabic Search, Sav...

    Manage document text search in C# with GroupDocs.Search .NET 24.4 (MSI). Easily index Arabic text. Save large in-memory indexes to disk. Download now!...Searching in the index string query = "focus" ; SearchResult result...result = index.Search(query); Source* Public API and Backward Incompatible...

    releases.groupdocs.com/search/net/new-releases/...
  8. Search by chunks | Documentation

    This article gives the knowledge about the ability to perform search by chunks....@"c:\MyDocuments\" ; string query = "Einstein" ; // Creating an...SearchResult result = index . Search ( query , options ); Console . WriteLine...

    docs.groupdocs.com/search/net/search-by-chunks/
  9. How to Run Examples | Documentation

    This article describes how to run .NET search API code examples....path for your documents string query = "Einstein" ; Index index =...SearchResult result = index . Search ( query ); // Searching in index foreach...

    docs.groupdocs.com/search/net/how-to-run-examples/
  10. Indexing with stop words | Documentation

    Stop words are frequently used words that do not carry a semantic meaning and can be removed from an index to reduce its size. You can enable or disable the use of stop words by calling the setUseStopWords method of the IndexSettings class. The default value is true, meaning that stop words are filtered during indexing and not added to the index. A list of stop words to use during indexing can be specified in the stop word dictionary....const query = 'on' ; const result = index . search ( query ); More...

    docs.groupdocs.com/search/nodejs-java/indexing-...