go-radix icon indicating copy to clipboard operation
go-radix copied to clipboard

Golang implementation of Radix trees

Results 8 go-radix issues
Sort by recently updated
recently updated
newest added

I want to ask a low-level question, is this an adaptive radix tree?

After deleting, there are redundant node. ![bug](https://user-images.githubusercontent.com/25324070/101246797-800a4480-3750-11eb-9c15-5617b6de77d5.jpg)

Can this be used from multiple concurrent goroutines?

Sorry for the drive by. This is a useful package and I've made extensive changes to my version. There is an easy performance improvement. If you like it, you can...

Hi, I had added ppc64le(Linux on Power) support on travis-ci in the branch and looks like its been successfully added. I believe it is ready for the final review and...

carries https://github.com/armon/go-radix/pull/12 closes https://github.com/armon/go-radix/pull/12 relates to https://github.com/moby/libnetwork/pull/2581

If a node is deleted from within the walk function, currently the recursive walk will panic if it then tries to go down that branch. Instead, terminate walking that branch.