datrie
datrie copied to clipboard
A JavaScript Double Array Trie
Results
2
datrie issues
Sort by
recently updated
recently updated
newest added
One of the reasons this lib is helpful is for compact serializations of tries into memcached. It'd be great if I didn't have to write that serialization myself :)
I can see this [well written] implementation is based on [Aoe1992](http://sc.snu.ac.kr/~xuan/spe777ja.pdf) but it seems like it doesn't work for all cases. ``` var trie = new Trie({...}); trie.insert('baby#'); trie.insert('babe#'); var...