I'm using a dict to store cached paths in a filesystem I've implemented. The keys in the dict are all strings. After some profiling I've demonstrated that lookups in the dictionary are a bottleneck. My understanding is that dict is highly optimized. Unfortunately the precision of cProfile does not include the inner workings of the dict lookup code.
Is there some reason that lookups for strings would be so slow in Python 3? Is there something I can do to workaround or improve the performance?