Posts: 4,646
Threads: 1,493
Joined: Sep 2016
Dec-19-2016, 08:49 AM
(This post was last modified: Dec-19-2016, 09:10 AM by Skaperen.)
i wrote a little test script to use as much memory as it can. it's taking quite a while.
#!/usr/bin/env python3
from copy import deepcopy
tree = { 'subtree':{ 1:'one', 2:'two' } }
for n in range( 0xffffffffffff ):
print( n )
tree['foo'] = deepcopy( tree )
tree['bar'] = deepcopy( tree )
i guess i didn't need such a large argument for range()
it's using 95% of memory and 20% of CPU, so it must be swapping heavily.
i gave up on it. i was running it in 3 different size cloud instances in parallel. i terminated all 3.
you didn't think i would run it on my laptop did you?
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.