Leon

Results 20 comments of Leon

Yeah, but considering that there aren't that many metrics I find it a bit overkill to add an entire extra exporter. I also previously looked at the project you linked...

Fixed all the Notes from the Review and now also added the Lock-Free list, called HandleList. Also updated most of the Tests to support testing in no_std where possible, however...

While using an existing crate for a lock free list would certainly make it a bit easier since we dont need to maintain our own implementation. However I dont know...

Yeah right, didnt really think about that, but I think there was a Problem, where want to iterate over the same list of handles in the Writer, while we wait...

Now fixed the previous Drop-Problem and also found and fixed another minor Problem with the List-Snapshot. I first fixed the Drop-Problem for the HandleList, by moving the actual ownership of...

Fixed most of the Comments you made for the last commit. Although there are still some open questions for me, especially how we would want to do the removal of...

Hopefully I can find some time this week to properly look into it and integrate that into it. Will give an update then

Im not exactly sure anymore what exactly the stopping factor was, but from a quick look there seem to be two points that need to be addressed: - Add CI...

After looking at the Code more closely, I also found that it uses the `std::Mutex` for epochs and I dont really know how we can adjust that without adding a...

Although the Array approach could definetly work I dont know if it may be too restrictive because you may not know how many readers there will be. One quick thought...