I have a dictionary that consists of words and their phonetic transcriptions. The words are all lower case, so there is not case-sensitive search involved.
The lexicon is really huge, and I need to load it quickly when my application starts. I would prefer reading it without having to read each entry separately.
I guess the way I stored and load it also affects how I keep the lexicon in memory
Thank you for any ideas.