Fixed
Details
Assignee
Pothys - MitrahSoftPothys - MitrahSoftReporter
Ben NadelBen NadelLabels
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
NoneFix versions
Affects versions
Priority
New
Details
Details
Assignee
Pothys - MitrahSoft
Pothys - MitrahSoftReporter
Ben Nadel
Ben NadelLabels
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
None
Fix versions
Affects versions
Priority
Created 22 April 2022 at 11:42
Updated 8 June 2023 at 20:39
Resolved 10 May 2023 at 12:00
It seems that the
arraySlice()
implementation works by iterating over the entire key-space in the array in order to locate the slice-offset. As the size of the target array increases, so does the performance cost of thearraySlice()
call. This is strongly related to the location of the slice within the overall array.By not using
arraySlice()
, I was able to improve the performance of my algorithm by 500x. I’m sure there is a reason thatarraySlice()
is written the way it is and it probably handles edge-cases that my code doesn’t actually have to worry about. But, I’m just letting you all know in case there is something worth re-evaluating.Here’s my particular context - I was splitting a massive array up into smaller arrays for sub-processing: