Sort Score
Result 10 results
Languages All
Labels All
Results 131 - 140 of 1,036 for

query

(0.04 sec)
  1. Logging | Documentation

    This page contains information on creating and assigning a logger of an index, as well as on the implementation of a custom logger. Use of standard file logger In order to save information about events and errors in an index into a file, you should use the standard file logger or your own custom logger. It is important to remember that each time you open an existing index, you must create and assign an instance of the logger again, because the logger is not saved....= 'c:/MyDocuments/' ; const query = 'Einstein' ; const logPath...const result = index . search ( query ); // Search in index Implementing...

    docs.groupdocs.com/search/nodejs-java/logging/
  2. Separate data extraction | Documentation

    This article explains how to separately extract data from documents and add the extracted data to the index....Searching in the index const query = 'Einstein' ; const result...result = index . search ( query ); Note that when indexed documents...

    docs.groupdocs.com/search/nodejs-java/separate-...
  3. Custom text segmenter | Documentation

    GroupDocs.Search provides the ability to set up custom text segmenting....Searching in the index string query = "考虑" ; // Consider SearchResult...SearchResult result = index . Search ( query ); More resources GitHub examples...

    docs.groupdocs.com/search/net/custom-text-segme...
  4. Search reports | Documentation

    This article shows that how to perform the operations on generated search reports....occurrences found; The search query; The search options. The following...reports ) { console . log ( 'Query: ' + report . getTextQuery ());...

    docs.groupdocs.com/search/nodejs-java/search-re...
  5. Character replacement during indexing | Documen...

    Character replacement during indexing can be used, for example, to convert all text to lowercase characters or to remove diacritics from text....case-insensitive search is performed const query = 'Einstein' ; const options...const result = index . search ( query , options ); More resources...

    docs.groupdocs.com/search/nodejs-java/character...
  6. Search with Aliases in Document using C#

    Let's learn how to search with aliases in document using C#. Simplify queries, boost accuracy, and achieve robust document search with aliases in C# across platforms....to replace lengthy search queries with concise, user-friendly...alias dictionary Run the search query with Index.Search method by...

    kb.groupdocs.com/search/net/search-with-aliases...
  7. 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-...
  8. 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/
  9. Numeric Range Search in Java

    Easily execute numeric range search in Java with GroupDocs.Search. Discover advanced and efficient methods to search numeric ranges in documents Java seamlessly....desired files Perform a search query with numeric ranges by calling...executed using straightforward queries like "500 ~~ 600" or by employing...

    kb.groupdocs.com/search/java/numeric-range-sear...
  10. Document passwords | Documentation

    This article gives the knowledge of the API methods which can be used to perform operations about document passwords or password dictionary using Java....Searching in the index const query = 'ipsum OR increasing' ; const...const result = index . search ( query ); More resources GitHub examples...

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