http://qs321.pair.com?node_id=774929


in reply to File search using Grep

so will the following code have issues?
you have to run and tell us what issue it is having

why can't you use the grep utility; if you are using *nix system.


Vivek
-- 'I' am not the body, 'I' am the 'soul', which has no beginning or no end, no attachment or no aversion, nothing to attain or lose.

Replies are listed 'Best First'.
Re^2: File search using Grep
by Anonymous Monk on Jun 26, 2009 at 06:10 UTC
    vivek, Actually we were planning to load the info in Config1 as hashes and then use it find the value. But as the file increases in size we were worried about the hash performance, so looked at this as alternate approach. So will the hash be better or this? Thanks
      IMO, if the comparison is not involving too many complexities, better use grep
      But it seems that you are ready to load such a big file into hashes, you can use DBM::Deep But since the data is stored in a file, it will not be as quick as normal hash.
      If you give more information about what/why you are trying to load and what/why you are trying to compare, you will get best possible solutions


      Vivek
      -- 'I' am not the body, 'I' am the 'soul', which has no beginning or no end, no attachment or no aversion, nothing to attain or lose.
      There is no data structure that can beat a hash for look-up's. The Perl hash algorithm isn't theoretically perfect, but it is damn fast. End of story.