Hey, I have many lines that I use in my application, the .txt file that I use has ~ 14000 lines .. and each 3-10 lines are divided into sections like <String="Chapter I"> ... </String> ..
Speaking of performance / speed, should I put partitions into the database or read line by line through a .txt file and check if the partition number is current? Will it affect speed / performance?
I could also split every ~ 2000 lines into another .txt file so that there are fewer lines to go through. Is this a bad way to store data? Thanks
Omar source
share