in reply to Re^8: how to check if a particular value exist in list of files stored in an array
in thread how to check if a particular value exist in list of files stored in an array

Have you checked how long it takes to fetch the data without doing anything else?

You can't get faster than the time it takes you to fetch the data.

Maybe you can be smarter and find out that you don't need to read all the data.

Only you with your knowledge about the files and the data can decide whether you need to read through all files to find the entries or not.

  • Comment on Re^9: how to check if a particular value exist in list of files stored in an array