Very big string trie in Haskell
Asked Answered
E

1

6

I need to load a few millions of short (length < 16) strings into a string trie in Haskell from the file and then to perform many very fast look-ups. What is the best way how to do that in Haskell? Would appreciate any strategy (package).

Note: It must be a trie, because I need the search logic of a trie.

Exorable answered 21/10, 2012 at 18:8 Comment(0)
S
6

bytestring-trie. I think it is fast enough for most of the purposes.

Sikorsky answered 21/10, 2012 at 18:18 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.