Uploaded image for project: 'Torque'
  1. Torque
  2. TORQUE-364

RecordMapper very slow on many columns in table

    XMLWordPrintableJSON

Details

    Description

      When "doSelect()" a large quantity of columns in a table the default RecordMappers generated by Om-Templates (processRow()) cause an Problem. (technically O(rows * columns))

      Specifically, constantly generating the SQL expression of all possible columns for every row in the result causes excessive use of StringBuilders which slow the mapping process to a crawl.

      I currently have two ideas on how best to tackle this problem:

      1. Either generate all SQL column expressions once when a (template generated) RecordMapper is first created (using final static String fields) thus reducing the cost for every row to generating all selected column SQL expressions  once(instead of every selected column times every available column)
      2. Or (in case the first approach generates unacceptably excessive number of fields for RecordMappers) adjust the RecordMapper API to allow a "prepare(Criteria, int offset)" method to be called once before processing any rows and implement it on generated RecordMappers to scan the Criteria and build two lists: One containing references to the setXXX methods of the mapper in the order they appear in the ResultSet (via the order in the Criteria) and a second list containing the corresponding column offsets. This would allow the processRow method to only iterated over both lists simultaneously and call the referenced methods with the result set and offset immediately. (Alternatively one list using lambdas could be used but I am currently not sure about the stance or impact of these lambdas in the Torque project.)

      credits to refarb 

      Attachments

        Activity

          People

            Unassigned Unassigned
            mwriedt Max Philipp Wriedt
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: