KernelPanic@programming.dev to Programmer Humor@programming.devEnglish · 5 months agoLearning to program in rustprogramming.devvideomessage-square52fedilinkarrow-up1272arrow-down15
arrow-up1267arrow-down1videoLearning to program in rustprogramming.devKernelPanic@programming.dev to Programmer Humor@programming.devEnglish · 5 months agomessage-square52fedilink
minus-squaretatterdemalion@programming.devlinkfedilinkarrow-up5·5 months agoArc is not free, and the extra atomic operations + heap allocations can become a bottleneck.
minus-squarePlexSheep@infosec.publinkfedilinkarrow-up1·5 months 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.
Arcis 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.