Hello, I am trying to store approximately 50 - 100 million variable length strings into an array and of course this is not working due to memory constraints. I have converted the strings to unique integers and then stored the integers in a vec which lets me store about 60 million before I run out of memory. My question is: has anyone else run into this problem and how did you solve it?
Thanks!