More specifically can a patricia trie:
http://search.cpan.org/~plonka/Net-Patricia-1.014/Patricia.pm
Contain duplicate IP addresses (duplicate key IP with different values) and if so how does it handles returning the values from that key?
ie:
123.456.789.0-> {
'value' => 'hai'
}
123.456.789.0->{
'value' => 'hey there'
}
patricia-trie->match_string(123.456.789.0)
returns ???
Edit: Yes, I know I can implement my own that supports this behavior. I am asking how this specific trie implementation handles it. The documentation is extremely limited and manual testing appears to show overwrites, but I was hoping someone has a definitive answer.