| __Ace__ | must be something wrong with this then: $self->{somekey}->{$id} = "something" ? |
| dhar | check the value of $id |
| __Ace__ | id is scalar I belive |
| Woosta | I thought it was *always* scalar-ified |
| __Ace__ | something like "323-32" |
| Woosta | eval: $foo={bar=>1}; $zap{$foo} = 1; keys %zap |
| buubot | Woosta: 1 |
| Woosta | eval: $foo={bar=>1}; $zap{$foo} = 1; [keys %zap] |
| buubot | Woosta: ['HASH(0x8641818)'] |
| Woosta | ^^ phew .. thought so |
| dhar | k well then thats not it |
| __Ace__ | wierdo |
| dhar | whats the exact Dumper syntax you're calling? |
| __Ace__ | sec ow, just relized something I load to the hash like this: $self->{somekey} = retrieve("thread_id.data"); using PDL :) forgot I load now, else I think there is no prolem *problem sorry, that is from Storable need to remove that \ somehow thouth *though |
| Randal | it's in how you're making the hash what does the code look like there? you're doing something like I said, instead of what you want ... $self->{somekey} = \{ foo => bar }; |
| __Ace__ | aha |
| Randal | eval: $self->{somekey} = \{ foo => bar }; \$self |
| buubot | Out of memory! Randal: |
| Randal | whoa! |
| dhar | hahah |
| __Ace__ | lol |
| Randal | broke it! |
| dhar | nice going! |
| Randal | buubot has forgotten EVERYTHING! |
| __Ace__ | eval: ok |
| buubot | __Ace__: ok |
| __Ace__ | :) |