KernelPanic@programming.dev to Programmer Humor@programming.devEnglish · 2 days agoLearning to program in rustprogramming.devvideomessage-square48fedilinkarrow-up1298arrow-down13
arrow-up1295arrow-down1videoLearning to program in rustprogramming.devKernelPanic@programming.dev to Programmer Humor@programming.devEnglish · 2 days agomessage-square48fedilink
minus-squaretatterdemalion@programming.devlinkfedilinkarrow-up4·15 hours agoArc is not free, and the extra atomic operations + heap allocations can become a bottleneck.
minus-squarePlexSheep@infosec.publinkfedilinkarrow-up1·4 hours agoOh, I did not know that. Well, it makes sense that it has a heap allocation, as it becomes more or less global. Though not sure why the atomic operations are needed when the value inside is immutable.
Arc
is not free, and the extra atomic operations + heap allocations can become a bottleneck.Oh, I did not know that. Well, it makes sense that it has a heap allocation, as it becomes more or less global. Though not sure why the atomic operations are needed when the value inside is immutable.