@Test
public void getSpeedTestMySQL() throws IOException, SQLException {
Random r = new SecureRandom();
AvroBase<User, byte[]> userHSAB = getMysqlAB();
User user = getUser();
userHSAB.put($("test"), user);
long start = System.currentTimeMillis();
for (int i = 0; i < 100000; i++) {
int u = r.nextInt(100000);
Row<User, byte[]> test = userHSAB.get($(String.valueOf(u)));