zoukankan      html  css  js  c++  java
  • he time that it takes to bring a block from disk into main memory

    DATABASE SYSTEM CONCEPTS, SIXTH EDITION

    There is a trade-off that the system designer must make between access time
    and space overhead. Although the decision regarding this trade-off depends on
    the specific application, a good compromise is to have a sparse index with one
    index entry per block. The reason this design is a good trade-off is that the
    dominant cost in processing a database request is the time that it takes to bring
    a block from disk into main memory. Once we have brought in the block, the
    time to scan the entire block is negligible. Using this sparse index, we locate the
    block containing the record that we are seeking. Thus, unless the record is on an
    overflow block (see Section 10.6.1), we minimize block accesses while keeping
    the size of the index (and thus our space overhead) as small as possible.

  • 相关阅读:
    认识jeecms开源项目
    初识eclipse及配置相关
    Html5 Video的使用
    实现渐变色案例
    区域路由的注册机制
    MVC特性路由的提供机制
    再谈async与await
    同步 VS 异步
    C#多线程中的异常处理
    C#多线程基础
  • 原文地址:https://www.cnblogs.com/rsapaper/p/6204052.html
Copyright © 2011-2022 走看看