Sorting the file before loading it won't affect anything. There's simply no way to sort hash tables - it's an inherent property of how they work.

If you need a sorted data structure you could use either a file (slower to read/write, but can be as big as you need) or a sorted hidden window (fast, but limited size).