home *** CD-ROM | disk | FTP | other *** search
/ Shareware Supreme Volume 6 #1 / swsii.zip / swsii / 163 / STACDOCS.ZIP / STAC20.DOC < prev    next >
Text File  |  1991-09-27  |  5KB  |  133 lines

  1. Stac Electronics
  2. 5993 Avenida Encinas
  3. Carlsbad, CA  92008
  4. (800) 225-1128    [ordering information number]
  5.  
  6. Reproduction of Press Release dated 09/16/91
  7. Announcing Stacker version 2.0
  8.  
  9. STACKER PRODUCT FAMILY
  10.  
  11. Technology ------------------------------------------------------
  12.    *  Operating Systems         DOS 3.x and above, Compaq DOS
  13.                                       3.1, DR DOS
  14.    *  Operating Environments    Microsoft Windows 3.0
  15.    *  Utilities                 Norton Utilities, PC Tools
  16.    *  Disk Caching Programs     PC Tools, Super PC-Kwik
  17.    *  Disks and Drives          Floppy, Bernoulli, RAM, IDE, MFM, 
  18.                                       SCSI, RLL
  19. Performance -----------------------------------------------------
  20.    *  Compression Ratio     2:1 average; up to 18:1 on some files
  21.    *  Speed                 Up to 5 megabytes a second
  22. Installation ----------------------------------------------------
  23.    *  Includes Symantec/Norton Speed Disk
  24.    *  Detects Coprocessor Board Being Installed
  25.    *  Performs System Recognition and Diagnostics
  26.    *  Program Loadable Into High Memory
  27.    *  Improved User Interface
  28.    *  No Reformatting
  29.    *  No DMA Channels or Interrupts to Set
  30.    *  No Jumpers or Switches on Board to Set
  31. Utilities -------------------------------------------------------
  32.    *  Defragmenter           
  33.    *  Grow and Shrink Stacker Drives
  34. Selection -------------------------------------------------------
  35.    *  STACKER 2.0
  36.          Software Only
  37.          30K-byte program
  38.          Suggested retail:  $149
  39.          Ideal for laptop, notebook and portable computers
  40.    *  STACKER XT/8
  41.          8-bit coprocessor card
  42.          Stacker 2.0 included -- 21K-byte program
  43.          Suggested retail:  $199
  44.          Designed for IBM PCs, XTs and compatibles
  45.    *  STACKER AT/16
  46.          16-bit coprocessor card
  47.          Stacker 2.0 included -- 21K-byte program
  48.          Suggested retail:  $249
  49.          Designed for all 80286-, 80386-, and 80486- based PCs
  50.              and compatibles
  51.    *  STACKER MC/16
  52.          16-bit coprocessor card
  53.          Stacker 2.0 included -- 21K-byte program
  54.          Suggested retail:  $299
  55.          Designed for Microchannel-based IBM PS/2s and compatible
  56.  
  57. STACKER TECHNOLOGY
  58.  
  59.  
  60. What is Stacker -------------------------------------------------
  61.  
  62.    The Stacker[TM] MS-DOS device driver implements a virtual disk
  63.    with twice the capacity of the physical disk.  It works by
  64.    reducing the number of sectors required to hold an MS-DOS
  65.    cluster.
  66.  
  67. How Stacker Works -----------------------------------------------
  68.  
  69.    As the Stacker device driver is called upon to write a cluster
  70.    of data, it calls upon the Stac compression technology in
  71.    either hardware or software to compress the data in the
  72.    cluster.  Once compressed, the data is allocated to the
  73.    minimum integral number of sectors necessary to contain the
  74.    compressed cluster.
  75.  
  76.    Stacker uses either a 4K or 8K byte cluster.  Normally, MS-DOS
  77.    would require eight 512-byte sectors to store a 4K cluster. 
  78.    By compressing the data by a factor of 2, on the average,
  79.    Stacker uses only half the number of sectors to store the same
  80.    amount of data.  In the case of a 4K cluster, 2:1 compression
  81.    yields four sectors per cluster rather than eight.  The result
  82.    is a doubling of capacity on a compressed volume.
  83.  
  84. The Stacker Algorithm Consists of Two Elements ------------------
  85.  
  86.   *  An MS-DOS device driver that compresses all data before it
  87.         is written to a storage device and decompresses all data
  88.         as it is read.
  89.  
  90.   *  Stacker LZS[TM], a high-speed lossless compression
  91.         algorithm, is implemented in a coprocessor chip or in
  92.         software.
  93.  
  94.   The Stacker LZS algorithm looks for repeated string in a
  95.   window.  The window within which string matches can be found
  96.   always contains the most recently processed 2,048 bytes.  The
  97.   technique employed gets its name, sliding window, because the
  98.   window slides forward through a file as bytes are processed.
  99.  
  100. Useful Definitions ----------------------------------------------
  101.  
  102.   Algorithm:  A predetermined set of instructions for solving a
  103.                  specific problem in a limited number of steps.
  104.  
  105.     Cluster:  Unit of storage allocation used by MS-DOS, usually
  106.                  consisting of four or more 512-byte sectors.
  107.  
  108.    Lossless:  No information is lost or altered in the
  109.                  compression process.
  110.  
  111.          LZ:  Lempel Ziv is a lossless adaptive compression
  112.                  algorithm first published in 1977.  LZ looks for
  113.                  matches in a file it is compressing or
  114.                  decompressing and replaces occurrences of
  115.                  repeated strings with shorter tokens.  The
  116.                  tokens are used during decompression to
  117.                  reconstruct the original strings.
  118.  
  119.   Real Time:  Compressing all data on the way to the disk as it
  120.                  is written, and decompressing the data as it is
  121.                  read back from the disk as quickly as the host
  122.                  computer can move it. 
  123.  
  124.      Sector:  A unit of allocations used by Winchester disk
  125.                  drives, usually 512 bytes.
  126.  
  127.     Sliding
  128.      Window:  A 2,048-byte sliding segment of a file where the
  129.                  Stacker algorithm looks for repeated strings.
  130.  
  131.     Strings:  A sequence of bytes.
  132.  
  133.