Free cookie consent management tool by TermsFeed Policy Generator

Changes between Initial Version and Version 1 of Ticket #2809, comment 17


Ignore:
Timestamp:
11/16/17 16:45:12 (7 years ago)
Author:
bburlacu
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2809, comment 17

    initial v1  
    11- unchecking a filter results in the wrong number of remaining and total rows displayed in the filter preview
     2- filtering is quite slow (takes ~7 seconds on my machine to remove 15k rows after filtering) - this problem also exists in the trunk version of the DataPreprocessing)
    23
    3 - filtering is quite slow (takes ~7 seconds on my machine to remove 15k rows after filtering) - this problem also exists in the trunk version of the DataPreprocessing)
     4**EDIT**:
     5The slowness is caused by the calls to `IList.RemoveAt()` which is called in succession for each row that needs to be removed inside the `PreprocessingData.DeleteRow()` method. Simply replacing the original values with the filtered values (instead of by row removal) results in a massive speed improvement.