Adam Retter

Results 573 comments of Adam Retter

Okay, I have been able to get access to a RISCV system again. I tried again building v7.0.3 using the command `make static_lib` and I saw these issues: ``` In...

Oooh... I would like a nice badge for our projects too!

@franz1981 Okay thanks, that makes a lot of sense. So should this be considered a bug in `NonBlockingHashMap`?

Utilising the code (below), eliminates the NPE. However, the behaviour is still different from that of `ConcurrentHashMap` in so far as I am seeing a lot of unexpected `null` values...

I guess I was assuming that I could use it as a drop-in-replacement for `ConcurrentHashMap`because the Javadoc in `NonBlockingHashMap` says: > It provides identical correctness properties as ConcurrentHashMap From: https://github.com/JCTools/JCTools/blob/master/jctools-core/src/main/java/org/jctools/maps/NonBlockingHashMap.java#L31...

Perhaps I should explain from basics my use-case and then someone might be able to comment on another approach I could take, or if it is possible for me to...

@cliffclick Thanks I understand your concern with regards to hash-collisions. However I think I might have muddied the waters. Sorry. The NPE I originally reported was coming from code where...

@cliffclick Okay I have moved on a bit with my implementation, I am no longer using integer keys of hash codes. I also no longer use `compute`... just `put`, `get`,...

@franz1981 I am not certain the recycling code is correct. I have been studying it for a couple days now, *I think* it is correct, but I may well have...

@dozed Okay I will see what I can whip up.