int keynum = random.nextInt(keyspace);
String key = "user" + keynum;
long st = System.currentTimeMillis();
int rescode;
HashMap<String, ByteIterator> vals = new HashMap<String, ByteIterator>();
vals.put("age", new StringByteIterator("57"));
vals.put("middlename", new StringByteIterator("bradley"));
vals.put("favoritecolor", new StringByteIterator("blue"));
cli.insert("usertable", key, vals);
}
/*
* HashMap hm = new HashMap();
* hm.put("field1","value1"); hm.put("field2","value2");