Details
Assignee
UnassignedUnassignedReporter
Tom CrayfordTom CrayfordLabels
Approval
IncompletePatch
Code and TestPriority
MajorAffects versions
Details
Details
Assignee
Unassigned
UnassignedReporter
Tom Crayford
Tom CrayfordLabels
Approval
Incomplete
Patch
Code and Test
Priority

Affects versions
Created February 6, 2015 at 5:23 PM
Updated November 19, 2024 at 3:00 AM
Making assoc calls of a single kv is significantly faster than one assoc of multiple kvs:
Michiel Borkent did some code spelunking to look at frequency of use per key count:
assoc kv arity count
m2 corpus count
Corfield corpus count
1 key
20884
32258
2 keys
3036
4848
3 keys
1083
1286
4 keys
327
535
5 keys
126
354
6 keys
64
118
7 keys
33
100
Proposed:
Impl: assoc is defined early, redefine later with the unrollings and apply the docstring, meta etc to that point.
Unroll up to 6 kvs
Perf testing of patch, similar to .
The last column is a check for polymorphic calls, which shows similar gains to those seen in the monomorphic tests.
Patch:
CLJ-1656-v8