Sujet : memory usage De : saitology9 (at) *nospam* gmail.com (saito) Groupes :comp.lang.tcl Date : 08. Aug 2024, 21:21:21 Autres entêtes Organisation : A noiseless patient Spider Message-ID :<v939c2$7nob$1@dont-email.me> User-Agent : Mozilla Thunderbird
Sorry this may be quite basic but just wanted to confirm it: Let's say that I have a proc which generates a large dict and returns it. Then when used, the caller assigns it to a variable. How much memory is used, 10mb or 20mb? (let's ignore any extra memory needed to manage the dict structure and the proc calls). proc generate_10mb_dict {a b c} { # generate a large dict, in d return $d } set my_data [generate_10mb_dict $a $b $c] what is the ram use at this point?