zoukankan      html  css  js  c++  java
  • 不同类型的ABAP内表读写性能比较

    I construct three internal tables with different table types:

    The complete test source code could be found in the end part of the blog.

    insert operation comparison

    The hashed table is least efficient since additional overhead is paid to maintain the internal administrative information for hash logic.
    The standard table is fastest due to the fact that there is no overhead.

    read operation comparison

    The standard table read is slowest due to o(n) complexity.

    If we exclude the standard table read and compare the left three, it is clear the hashed table read is most efficient.

    The complete test source code:

    REPORT z.
    PARAMETERS: count TYPE i OBLIGATORY DEFAULT 1000.
    TYPES: BEGIN OF ty_pair,
             key   TYPE i,
             value TYPE string,
           END OF ty_pair.
    TYPES: tt_standard TYPE STANDARD TABLE OF ty_pair WITH KEY key,
           tt_sorted   TYPE SORTED TABLE OF ty_pair WITH UNIQUE KEY key,
           tt_hashed   TYPE HASHED TABLE OF ty_pair WITH UNIQUE KEY key.
    DATA: lv_start    TYPE i,
          lv_end      TYPE i,
          lt_standard TYPE tt_standard,
          lt_sorted   TYPE tt_sorted,
          lt_hashed   TYPE tt_hashed,
          lv_size        TYPE i.
    START-OF-SELECTION.
      lv_size = count.
      PERFORM insert_standard.
      PERFORM insert_sorted.
      PERFORM insert_hashed.
      PERFORM read_standard.
      PERFORM read_standard_binary.
      PERFORM read_sorted.
      PERFORM read_hashed.
    FORM insert_standard.
      PERFORM start_timer.
      DO lv_size TIMES.
        DATA(line) = VALUE ty_pair( key = sy-index value = sy-index ).
        APPEND line TO lt_standard.
      ENDDO.
      PERFORM stop_timer.
      " WRITE: / 'standard table insertion: ' , lv_end.
    ENDFORM.
    FORM insert_sorted.
      PERFORM start_timer.
      DO lv_size TIMES.
        DATA(line) = VALUE ty_pair( key = sy-index value = sy-index ).
        INSERT line INTO TABLE lt_sorted.
      ENDDO.
      PERFORM stop_timer.
      " WRITE: / 'sorted table insertion: ' , lv_end.
    ENDFORM.
    FORM insert_hashed.
      PERFORM start_timer.
      DO lv_size TIMES.
        DATA(line) = VALUE ty_pair( key = sy-index value = sy-index ).
        INSERT line INTO TABLE lt_hashed.
      ENDDO.
      PERFORM stop_timer.
      " WRITE: / 'hashed table insertion: ' , lv_end.
    ENDFORM.
    FORM read_standard.
      PERFORM start_timer.
      DO lv_size TIMES.
        READ TABLE lt_standard ASSIGNING FIELD-SYMBOL(<standard>) WITH KEY key = sy-index.
        ASSERT sy-subrc = 0.
      ENDDO.
      PERFORM stop_timer.
      WRITE:/ 'standard table read: ', lv_end.
    ENDFORM.
    FORM read_standard_binary.
      SORT lt_standard BY key.
      PERFORM start_timer.
      DO lv_size TIMES.
        READ TABLE lt_standard ASSIGNING FIELD-SYMBOL(<standard>) WITH KEY key = sy-index BINARY SEARCH.
        ASSERT sy-subrc = 0.
      ENDDO.
      PERFORM stop_timer.
      WRITE:/ 'standard table binary read: ', lv_end.
    ENDFORM.
    FORM read_sorted.
      PERFORM start_timer.
      DO lv_size TIMES.
        READ TABLE lt_sorted ASSIGNING FIELD-SYMBOL(<sorted>) WITH KEY key = sy-index.
        ASSERT sy-subrc = 0.
      ENDDO.
      PERFORM stop_timer.
      WRITE:/ 'sorted table read: ', lv_end.
    ENDFORM.
    FORM read_hashed.
      PERFORM start_timer.
      DO lv_size TIMES.
        READ TABLE lt_hashed ASSIGNING FIELD-SYMBOL(<sorted>) WITH TABLE KEY key = sy-index.
        ASSERT sy-subrc = 0.
      ENDDO.
      PERFORM stop_timer.
      WRITE:/ 'hashed table read: ', lv_end.
    ENDFORM.
    FORM start_timer.
      CLEAR: lv_start, lv_end.
      GET RUN TIME FIELD lv_start.
    ENDFORM.
    FORM stop_timer.
      GET RUN TIME FIELD lv_end.
      lv_end = lv_end - lv_start.
    ENDFORM.
    

    要获取更多Jerry的原创文章,请关注公众号"汪子熙":

  • 相关阅读:
    11.14 mii-tool:管理网络接口的状态
    11.15 dmidecode:查询系统硬件信息
    11.11 ntsysv:管理开机服务
    HDU 2476 String painter 刷字符串(区间DP)
    HDU 1085 Holding Bin-Laden Captive! 活捉本拉登(普通型母函数)
    母函数的应用
    HDU 1028 Ignatius and the Princess III伊格和公主III(AC代码)母函数
    HDU 1059 Dividing 分配(多重背包,母函数)
    HDU 2955 Robberies抢劫案(01背包,变形)
    HDU 1011 Starship Troopers星河战队(树形dp)
  • 原文地址:https://www.cnblogs.com/sap-jerry/p/13639834.html
Copyright © 2011-2022 走看看