Dtsearch
Author: m | 2025-04-25
dtSearch Desktop dtSearch Network. download Report . Transcription . dtSearch Desktop dtSearch Network dtSearch Desktop dtSearch Network
dtSearch Instantly Search Terabytes : dtSearch
Search This BlogDownload DtSearch Desktop v7.70.8032DtSearch Desktop provides instant searching of desktop-accessible files. dtSearch can instantly search terabytes of text because it builds a search index that stores the location of words in documents. Indexing is easy — simply select folders or entire drives to index and dtSearch does the rest. Once dtSearch has built an index, it can automatically update it using the Windows Task Scheduler to reflect additions, deletions and modifications to your document collection. Updating an index is even faster, since dtSearch will check each file, and only reindex files that have been added or changed.The dtSearch indexer automatically recognizes and supports all popular file formats, and never alters original files. The dtSearch product line can instantly search terabytes of text across a desktop, network, Internet or Intranet site. dtSearch products also serve as tools for publishing, with instant text searching, large document collections to Web sites or CD/DVDs.Features:A scrolling word list, for instant feedback as you type in a search.A look-up word feature, detailing the effect of fuzzy, phonic, wildcard, stemming and thesaurus search options.Browse and customize thesaurus options.A field button, showing all indexed document fields.A search history display.Search reports, showing hits in retrieved documents, along with the requested amount of context.Clipboard options, file launching, and other tools for working with retrieved data.Exporting of search results in various data formats, for easy use with other programs.Special forensic indexing and searching toolsOS : Windows AllFile Size : 44 MBDOWNLOAD
dtSearch Network with Spider - dtSearch is intuitive and
DtSearchNetStdApi.dll provides a .NET Standard API to use the dtSearch Text Retrieval Engine.dtSearchNetStdApi.dll implements a .NET wrapper around the dtSearch Text Retrieval Engine. To use this API in a .NET project, add dtSearchNetStdApi.dll as a reference, and add the native library or libraries for the platforms that you will support, as described below. For overview topics covering indexing, searching, the dtSearch query language, etc., see Overviews. .NET Standard .NET Standard is a common set of .NET APIs across all .NET platforms. For more information about .NET Standard, please see: Platform compatiblity matrix Native Libraries The dtSearch .NET Standard API consists of two components: (1) dtSearchNetStdApi.dll, which is cross-platform, and (2) a platform-specific dynamic library, dtSearchEngine.dll (Windows), libdtSearchEngine.so (Linux), or libdtSearchEngine.dylib (MacOS). dtSearchNetStdApi.dll is the same on all platforms, and uses PInvoke to call the native library. For information on adding the required native library to your project, see Native Libraries. Deployment For information on deployment of the dtSearch .NET API, please see "Installing the dtSearch Engine with your Application" in the Overviews section. IDisposable When using the dtSearch Engine API, it is essential to use the IDisposable pattern with all API objects except JobErrorInfo. Otherwise, the .NET garbage collector may take a long time to free memory used by potentially large objects such as SearchResults, resulting in memory depletion in long-running applications. In C# code, use a "using" clause with dtSearch Engine API objects, and in other code call Dispose() when you are done with an object.dtSearch Engine – Windows – dtSearch UK
Menu option: Search > Search for List of Words The Search for List of Words dialog box provides a way to search for a long list of words, and create a list of matching files, in a single step. The list of words can be in any of the file formats that dtSearch supports. To search for a list of words, 1. Create the word list in any of the file formats that dtSearch supports, such as Microsoft Word, Excel, etc. 2. Click Search > Search for List of Words... 3. Enter the name of the file with the list of words. To browse for the file, click the ... button. If some of the words in the list are not English words, the word list file should be in a format that is able to store Unicode text, such as Microsoft Word or Excel, or the Unicode text format. 4. Under Search type, select the option that describes the type of search request in the text file. dtSearch will search for documents containing any of the words or phrases in the list. One word or phrase per line - The text file contains a series of lines, each of which contains a single word or phrase. Natural language - Treat the entire contents of the file as a single natural language search request. One Boolean (and, or, not, ...) expression per line - The text file contains a series of lines, each of which contains a single boolean search request. dtSearch will search for documents containing any of the boolean expressions in the list. 5. Under Search features, select search options to use in the search (stemming, fuzzy searching, etc.) 6. Select the type of search results that you want from the search. Check Open search results in dtSearch. dtSearch Desktop dtSearch Network. download Report . Transcription . dtSearch Desktop dtSearch Network dtSearch Desktop dtSearch Network DOWNLOADS FROM DTSEARCH CORP. dtSearch Text Retrieval Engine dtSearch Text Retrieval Engine; dtSearch Web with Spider single-server dtSearch Web with Spider; dtSearch Publish dtSearch Publish for CD/DVD generation; dtSearch Network with Spider dtSearch Network with Spider [ More downloads from dtSearch Corp]dtSearch Network with Spider (Posted by dtsearch)
Article: dts0220 This article will explain how to implement a web-Based search interface for a web site using the dtSearch Engine's .NET interface. Complete sample code for the interface described here is included with the dtSearch Engine in the examples\asp.net4 folder, in C# and VB.NET. Another sample using ASP.NET Core/5/6 and the dtSearch Engine's .NET Standard API is included with the dtSearch Engine in the examples\NetStd\WebDemo, and is online here. Indexing the web site To index the web site, you can either use the dtSearch Desktop Indexer or you can use the .NET API. To build the index using the dtSearch Indexer, 1. Click Start > Programs > dtSearch Developer > dtSearch Indexer. 2. Click Create index (advanced)... 3. Enter a name for the index and check these two boxes under Indexing options: Cache document text in the index and Cache documents in the index. Caching text in the index makes display of hits-in-context in search results much faster. 4. Click OK, then click Yes when the indexer asks if you want to add documents to the index. 5. Click Add web... and add the starting URL for the web site(s) to be indexed. For more information on building indexes of web sites, see How to index a web site with the dtSearch Spider and How to use dtSearch Web with dynamically-generated content. To index a web site using the API, you would use the HttpDataSource class. The following is from the SpiderDemo sample included with the dtSearch Engine: // Set up an IndexJob to build the index indexJob = new IndexJobWeb; indexJob.ActionCreate = true; indexJob.ActionAdd = true; indexJob.IndexPath = IndexPathEdit.Text; indexJob.IndexingFlags = IndexingFlags.dtsIndexCacheText | IndexingFlags.dtsIndexCacheOriginalFile; // Make data source to crawl the web sites dataSource = new HttpDataSourceWeb; foreach (WebSite ws in webSiteList) { dataSource.Add(ws); } // Start the Spider dataSource.StartCrawlWeb; // Attach the Spider's DataSource to the IndexJob indexJob.DataSourceToIndex = dataSource; // Start indexing. indexJob.ExecuteInThreadWeb; Searching the index To search the index for a user-entered search request, set up a SearchJob with the search request and the index to be searched: sj.Request = SearchRequest.Text; sj.IndexesToSearch.Add("... index path goes here ...."); sj.ExecuteWeb; // Get the results of the search Results = sj.Results; ... The search form for the search_cs sample provides additional options for search features such as fuzzy searching, boolean searching, etc.: Transferring these form variables into the SearchJob is done in the DoSearchWeb method of the search_cs sample. When the SearchJob is executed, the results are returned as a SearchResults object. Displaying search results The search_cs sample displays search results in a DataGrid control, showing the name and other properties of each document along with a brief snippet of text (the "synopsis") showing the first few hitsdtSearch (dtSearch) Bounga Solusi Informatika
Sound alike (like Smith and Smythe) thesaurus searching, to find related concepts and synonyms, using dtSearch Web's built-in thesaurus and/or user-defined concepts or synonymsWhile dtSearch Web supports all of these search options, Webmasters can easily customise published Web pages to include or exclude any of these options.DisplayAfter a search, dtSearch Web will display retrieved files with hit highlighting, and all links and images intact. The result looks just like the original HTML or PDF page, but with highlighted hits. HTML links remain fully functional in the document. "next hit", "previous document", "next document" buttons let you quickly navigate through your hits and documents.For XML, you can perform indexed searches using the full range of dtSearch features across an entire XML database, or limited to a highly specific combination of fields or sub-fields.For other file types, dtSearch uses built-in file converters to convert non-Web-ready formats such as wordprocessor, database, spreadsheet, ZIP, etc., to HTML for display with highlighted hits.Updates & SupportdtSearch Desktop with Spider (Posted by dtsearch)
BETHESDA, Md., Jan. 18, 2022 — dtSearch announces a new version, 2101.02, of its product line to instantly search for terabytes of online and offline data, spanning multiple folders, emails including attachments and nested attachments, online data and other databases. The product line covers enterprise and developer applications. The developer SDKs also make available dtSearch’s proprietary document filters. Developer applications can run “on premises” or in a cloud environment like Azure or AWS. The new version includes:Windows 11, Windows Server 2022, and .NET 6 added as supported platform/environmentsApple silicon M1/ARM developer build for the dtSearch Engine for macOSMultithreaded 64-bit indexer preview feature for much faster indexing on multicore Windows and Linux systemsSearch dialog box improvements for handling large numbers of indexesSupport for the new 64-bit versions of Adobe Acrobat and Adobe Reader for end-user PDF display with highlighted hitsAddition of Korean Hancom Office HWPX to dtSearch document filtersWith the new updates, key features of the dtSearch product line are as follows:Terabyte Indexer. dtSearch enterprise and developer products can index a terabyte of text encompassing multiple folders, emails with nested attachments, online data and other databases in a single index. The products can create and search any number of indexes. Index updates do not prevent concurrent searching. The multithreaded 64-bit indexer speed boost applies both to new index builds and to index updates. (The multithreaded indexer does not involve any change to the index format).Concurrent, Multithreaded Searching. Indexed search covering full-text and metadata is typically instantaneous, even in a concurrent search. dtSearch Desktop dtSearch Network. download Report . Transcription . dtSearch Desktop dtSearch Network dtSearch Desktop dtSearch Network DOWNLOADS FROM DTSEARCH CORP. dtSearch Text Retrieval Engine dtSearch Text Retrieval Engine; dtSearch Web with Spider single-server dtSearch Web with Spider; dtSearch Publish dtSearch Publish for CD/DVD generation; dtSearch Network with Spider dtSearch Network with Spider [ More downloads from dtSearch Corp]Comments
Search This BlogDownload DtSearch Desktop v7.70.8032DtSearch Desktop provides instant searching of desktop-accessible files. dtSearch can instantly search terabytes of text because it builds a search index that stores the location of words in documents. Indexing is easy — simply select folders or entire drives to index and dtSearch does the rest. Once dtSearch has built an index, it can automatically update it using the Windows Task Scheduler to reflect additions, deletions and modifications to your document collection. Updating an index is even faster, since dtSearch will check each file, and only reindex files that have been added or changed.The dtSearch indexer automatically recognizes and supports all popular file formats, and never alters original files. The dtSearch product line can instantly search terabytes of text across a desktop, network, Internet or Intranet site. dtSearch products also serve as tools for publishing, with instant text searching, large document collections to Web sites or CD/DVDs.Features:A scrolling word list, for instant feedback as you type in a search.A look-up word feature, detailing the effect of fuzzy, phonic, wildcard, stemming and thesaurus search options.Browse and customize thesaurus options.A field button, showing all indexed document fields.A search history display.Search reports, showing hits in retrieved documents, along with the requested amount of context.Clipboard options, file launching, and other tools for working with retrieved data.Exporting of search results in various data formats, for easy use with other programs.Special forensic indexing and searching toolsOS : Windows AllFile Size : 44 MBDOWNLOAD
2025-04-12DtSearchNetStdApi.dll provides a .NET Standard API to use the dtSearch Text Retrieval Engine.dtSearchNetStdApi.dll implements a .NET wrapper around the dtSearch Text Retrieval Engine. To use this API in a .NET project, add dtSearchNetStdApi.dll as a reference, and add the native library or libraries for the platforms that you will support, as described below. For overview topics covering indexing, searching, the dtSearch query language, etc., see Overviews. .NET Standard .NET Standard is a common set of .NET APIs across all .NET platforms. For more information about .NET Standard, please see: Platform compatiblity matrix Native Libraries The dtSearch .NET Standard API consists of two components: (1) dtSearchNetStdApi.dll, which is cross-platform, and (2) a platform-specific dynamic library, dtSearchEngine.dll (Windows), libdtSearchEngine.so (Linux), or libdtSearchEngine.dylib (MacOS). dtSearchNetStdApi.dll is the same on all platforms, and uses PInvoke to call the native library. For information on adding the required native library to your project, see Native Libraries. Deployment For information on deployment of the dtSearch .NET API, please see "Installing the dtSearch Engine with your Application" in the Overviews section. IDisposable When using the dtSearch Engine API, it is essential to use the IDisposable pattern with all API objects except JobErrorInfo. Otherwise, the .NET garbage collector may take a long time to free memory used by potentially large objects such as SearchResults, resulting in memory depletion in long-running applications. In C# code, use a "using" clause with dtSearch Engine API objects, and in other code call Dispose() when you are done with an object.
2025-04-03Article: dts0220 This article will explain how to implement a web-Based search interface for a web site using the dtSearch Engine's .NET interface. Complete sample code for the interface described here is included with the dtSearch Engine in the examples\asp.net4 folder, in C# and VB.NET. Another sample using ASP.NET Core/5/6 and the dtSearch Engine's .NET Standard API is included with the dtSearch Engine in the examples\NetStd\WebDemo, and is online here. Indexing the web site To index the web site, you can either use the dtSearch Desktop Indexer or you can use the .NET API. To build the index using the dtSearch Indexer, 1. Click Start > Programs > dtSearch Developer > dtSearch Indexer. 2. Click Create index (advanced)... 3. Enter a name for the index and check these two boxes under Indexing options: Cache document text in the index and Cache documents in the index. Caching text in the index makes display of hits-in-context in search results much faster. 4. Click OK, then click Yes when the indexer asks if you want to add documents to the index. 5. Click Add web... and add the starting URL for the web site(s) to be indexed. For more information on building indexes of web sites, see How to index a web site with the dtSearch Spider and How to use dtSearch Web with dynamically-generated content. To index a web site using the API, you would use the HttpDataSource class. The following is from the SpiderDemo sample included with the dtSearch Engine: // Set up an IndexJob to build the index indexJob = new IndexJobWeb; indexJob.ActionCreate = true; indexJob.ActionAdd = true; indexJob.IndexPath = IndexPathEdit.Text; indexJob.IndexingFlags = IndexingFlags.dtsIndexCacheText | IndexingFlags.dtsIndexCacheOriginalFile; // Make data source to crawl the web sites dataSource = new HttpDataSourceWeb; foreach (WebSite ws in webSiteList) { dataSource.Add(ws); } // Start the Spider dataSource.StartCrawlWeb; // Attach the Spider's DataSource to the IndexJob indexJob.DataSourceToIndex = dataSource; // Start indexing. indexJob.ExecuteInThreadWeb; Searching the index To search the index for a user-entered search request, set up a SearchJob with the search request and the index to be searched: sj.Request = SearchRequest.Text; sj.IndexesToSearch.Add("... index path goes here ...."); sj.ExecuteWeb; // Get the results of the search Results = sj.Results; ... The search form for the search_cs sample provides additional options for search features such as fuzzy searching, boolean searching, etc.: Transferring these form variables into the SearchJob is done in the DoSearchWeb method of the search_cs sample. When the SearchJob is executed, the results are returned as a SearchResults object. Displaying search results The search_cs sample displays search results in a DataGrid control, showing the name and other properties of each document along with a brief snippet of text (the "synopsis") showing the first few hits
2025-04-17Sound alike (like Smith and Smythe) thesaurus searching, to find related concepts and synonyms, using dtSearch Web's built-in thesaurus and/or user-defined concepts or synonymsWhile dtSearch Web supports all of these search options, Webmasters can easily customise published Web pages to include or exclude any of these options.DisplayAfter a search, dtSearch Web will display retrieved files with hit highlighting, and all links and images intact. The result looks just like the original HTML or PDF page, but with highlighted hits. HTML links remain fully functional in the document. "next hit", "previous document", "next document" buttons let you quickly navigate through your hits and documents.For XML, you can perform indexed searches using the full range of dtSearch features across an entire XML database, or limited to a highly specific combination of fields or sub-fields.For other file types, dtSearch uses built-in file converters to convert non-Web-ready formats such as wordprocessor, database, spreadsheet, ZIP, etc., to HTML for display with highlighted hits.Updates & Support
2025-04-09