// 108, 109, 101, 50, 48, 48, 56, 64, 103, 109, 97, 105, 108, 46, 99,
// 111, 109, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0]
HSClient client = new HSClientImpl(new InetSocketAddress(9999), 20);
final String[] fieldList = { "user_id", "user_name", "user_email",
"created" };
System.out.println(client.openIndex(0, "mytest", "test_user", "NAME_MAIL_INDEX",
fieldList));
String[] values = { "kevin" };
ResultSet rs = client.find(0, values);
while (rs.next()) {
System.out.println(rs.getString("user_name"));