Nevermind, i developped an algorithm to increase the performance of the read of my CSV data to about 90%! It now take 1 sec to load instead of 5-6. I avoided the use of tokenat for this operation, it was the bottleneck. I used a While with a virtual cursor and find to go through the data which was way more faster!
Thanks for the help through!