summaryrefslogtreecommitdiff
path: root/sandbox/stress.py
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/stress.py')
-rw-r--r--sandbox/stress.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/sandbox/stress.py b/sandbox/stress.py
deleted file mode 100644
index 03f5b4f..0000000
--- a/sandbox/stress.py
+++ /dev/null
@@ -1,11 +0,0 @@
-import psycopg2
-import threading, os, time, gc
-
-for i in range(20000):
- conn = psycopg2.connect('dbname=test')
- del conn
- if i%200 == 0:
- datafile = os.popen('ps -p %s -o rss' % os.getpid())
- line = datafile.readlines(2)[1].strip()
- datafile.close()
- print(str(i) + '\t' + line)