Changes between Version 12 and Version 13 of DatabaseBasedAnalysis/Tables


Ignore:
Timestamp:
08/24/18 15:03:04 (6 years ago)
Author:
tbretz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DatabaseBasedAnalysis/Tables

    v12 v13  
    4545== Events ==
    4646
    47 {{{
     47{{{#!div style="background: #d88; border: 3px ridge"
    4848Some important remark! The table is intentionally laid out as compressed InnoDB table. InnoDB has the advantage that the index and the row the index is pointing to is basically the same. That means that ones a row has been selected, there is no need for the disc to read the data from somewhere else anymore. Although, the access itself is not important for a SSD, the time for processing and decompression is. In particular compression is done in blocks so that more than a single index has to be read anyhow. Translated to data access that means that if you access the data by means of the index, access is optimized and fast. That also means that if you do not access your data (e.g. you just want to count entries in your index) it can be annoyingly fast because all the data has to be read from the drive.
    4949}}}