home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / internet / index / readme.txt < prev   
Text File  |  1997-09-16  |  959b  |  21 lines

  1. Index Server sample code
  2. ------------------------
  3.  
  4. Content Indexing is a service in Windows NT version 5.  It provides very fast
  5. full text search over material that has been indexed (typically files or web
  6. pages) at the expense of disk space (for storing the catalogs).  For more
  7. information, see the "Index Server" section in the SDK documentation.
  8.  
  9. The programmatic interface to the index server is via OLEDB.  The following
  10. samples demonstrate this interface:
  11.  
  12.   SIMPLE - create a query, submit it, and print the results.
  13.   ADVQUERY - allow a more complex query and avoid the use of CICreateCommand().
  14.   CATQ - GUI tool for searching the SDK; will start the index server if needed.
  15.  
  16. The index server relies on "filters" (registered implementations of the
  17. IFilter interface) to parse different file formats.  The following sample
  18. shows how such a filter DLL is built.
  19.  
  20.   IFILTER - implementation of the IFilter interface for HTML files.
  21.