-
-
Save kenbolton/5122276 to your computer and use it in GitHub Desktop.
Python script to test Redis set/get, hashed sets, memcached, and PostgreSQL hstore for memory consumption.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env python | |
import redis | |
import random | |
import pylibmc | |
import psycopg2 | |
import sys | |
from time import clock | |
r = redis.Redis(host='localhost', port=6379) | |
mc = pylibmc.Client(['localhost:11211']) | |
pg = psycopg2.connect("dbname='hstore' user='postgres' host='localhost'") | |
pg_cur = pg.cursor() | |
REDIS_SETGET = False | |
REDIS_HSET = False | |
MC = False | |
PG = False | |
NUM_ENTRIES = 1000000 | |
MAX_VAL = 12000000 | |
if len(sys.argv) != 2 or sys.argv[1] not in ('redis-normal', | |
'redis-hashes', 'memcached', 'postgresql'): | |
print 'Specify a test: redis-normal, redis-hashes, memcached, \ | |
postgresql' | |
print 'NOTE: clear out memcached (restart) or Redis (FLUSHALL) before running' | |
sys.exit(2) | |
if sys.argv[1] == 'redis-normal': | |
REDIS_SETGET = True | |
elif sys.argv[1] == 'redis-hashes': | |
REDIS_HSET = True | |
elif sys.argv[1] == 'memcached': | |
MC = True | |
elif sys.argv[1] == 'postgresql': | |
PG = True | |
p = r.pipeline() | |
for i in range(0, NUM_ENTRIES): | |
value = random.randint(0, MAX_VAL) | |
if MC: | |
mc.set(str(i), value) | |
elif PG: | |
pg_cur.execute('INSERT INTO hstore_test (data) VALUES (\'"%s"=>"%s"\');' % (str(i), value)) | |
elif REDIS_SETGET: | |
r.set(str(i), value) | |
elif REDIS_HSET: | |
bucket = int(i / 500) | |
p.hset(bucket, i, value) | |
if i % (NUM_ENTRIES/10) == 0: | |
if REDIS_SETGET or REDIS_HSET: | |
p.execute() | |
p = r.pipeline() | |
print '%s: %s' % (clock(), i) | |
pg_cur.execute('COMMIT;') | |
# one final clear out | |
if REDIS_SETGET or REDIS_HSET: | |
p.execute() | |
# get size | |
if MC: | |
size = int(mc.get_stats()[0][1]['bytes']) | |
elif PG: | |
pg_cur.execute("SELECT pg_database_size(\'hstore\');") | |
size = pg_cur.fetchone()[0] | |
elif (REDIS_SETGET or REDIS_HSET): | |
size = int(r.info()['used_memory']) | |
print '%s: %s' % (clock(), NUM_ENTRIES) | |
print '%s bytes, %s MB' % (size, size / 1024 / 1024) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment