hashicorp / go-immutable-radix

An immutable radix tree implementation in Golang
Mozilla Public License 2.0
999 stars 77 forks source link

Introduce partial prefix searching #3

Closed iverberk closed 8 years ago

iverberk commented 8 years ago

This change aims to provide the necessary groundwork for https://github.com/hashicorp/nomad/issues/54 and is related to https://github.com/hashicorp/go-memdb/pull/8.

This change makes it possible to search for a partial prefix and generate all underlying entries from that node onwards. This does not yet include a full test for the new function. We would like to collaborate on providing that.

dadgar commented 8 years ago

Closing as this is not needed to accomplish your goal and can be done using the existing SeekPrefix.