Talk:Development:Script:obj2obj converter

From VsWiki
Revision as of 21:36, 10 May 2005 by Pirx (talk | contribs) (Tips on code style)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Tips on code style

  • You can have if / elsif with perl as it optmizes for switch or not depending on what will be faster.
    (Or atleast it's supposed to). (by this guest via PM)
    • Pontiac 12:36, 10 May 2005 (PDT) Yeah, i know, but this is a minor performance thing.
      The main problems i'm getting are the storage of a huge amount of data in memory (hashes with several tousands of entries and the like) and recursive functions everywhere using them :-/
      Is there an easy solution to map a big hash to a temp-file so it save precious memory?