HackerTrans
TopNewTrendsCommentsPastAskShowJobs

facturi

no profile record

Submissions

[untitled]

1 points·by facturi·قبل سنتين·0 comments

Garbage Collection and Metastability [Marc's Blog]

brooker.co.za
2 points·by facturi·قبل سنتين·0 comments

Ask HN: What AI-generated bugs do you encounter, and how you debugged them

1 points·by facturi·قبل سنتين·0 comments

comments

facturi
·قبل سنتين·discuss
[flagged]
facturi
·قبل سنتين·discuss
It works in MariaDB.
facturi
·قبل سنتين·discuss
Tearing issue is mentioned in this issue https://github.com/dotnet/csharplang/issues/7016 but not in proposal
facturi
·قبل سنتين·discuss
That proposal doesn't mention how the union struct handles tearing under concurrent modification.

Tearing can cause memory safety issue. Variant A can have an integer field and variant B can have a reference field in the same offset. Tearing can cause it to treat an integer as reference.
facturi
·قبل سنتين·discuss
In GC languages, RCU is just atomic pointer update with immutable data structure. In a language without GC, it requires delayed destruction to avoid memory safety issues.

Linux kernel's RCU waits for all CPU cores to context switch and disables preemption when reading RCU data structure. This is not usable in normal application programming.
facturi
·قبل سنتين·discuss
This is related: Why relations are better than objects https://www.cell-lang.net/relations.html
facturi
·قبل سنتين·discuss
Does the range query aggregate the elements in range? If the aggregation operation forms a group (follows associativity law, has inverse) you can use prefix sum data structures like Fenwick tree.

If it doesn't have inverse so that you cannot subtract prefix sum, sparse table can be used.