in reply to Re: storing a large hash in a database
in thread storing a large hash in a database

Great but one question is that if I want to do this when you tie hash then it will be written in the local memory? Because reading my file into hash is really RAM consuming.
  • Comment on Re^2: storing a large hash in a database

Replies are listed 'Best First'.
Re^3: storing a large hash in a database
by afoken (Chancellor) on Dec 02, 2011 at 17:07 UTC

    Did you read the previous answer or the DB_File documentation?

    DB_File stores the data on disk using the Berkeley DB library, and it uses tie so that it looks like your data was stored in an ordinary hash.

    Alexander

    --
    Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)
Re^3: storing a large hash in a database
by hbm (Hermit) on Dec 02, 2011 at 17:09 UTC

    Short answer is no. Try it and see!