Low-level implementation of arraySlice() is very-slow at large-scale.

Description

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 the arraySlice() 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 that arraySlice() 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:

Attachments

1

Activity

Show:

Pothys - MitrahSoft 10 May 2023 at 11:59

checked this ticket with lucee latest version 6.0.0.389-SNAPSHOT. when using an array with more elements in arraySlice(), it works faster and the issue is solved

Michael Offner 8 May 2023 at 13:38

if testcases passes we are fine

Michael Offner 8 May 2023 at 13:38

Brad Wood 11 May 2022 at 15:20

Perfect, thanks!

Pothys - MitrahSoft 11 May 2022 at 15:12

Yes, Of course. ArraySlice() returns new array with my PR. I also included a test for that in testcase iteration 2.


Fixed

Details

Assignee

Reporter

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

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