public static void main(String[] args) throws Exception {
JedisPool pool = new JedisPoolBuilder().setDirectHostAndPort("localhost", "6379").setPoolSize(1).buildPool();
try {
JobDispatcher dispatcher = new JobDispatcher("ss", pool);
JobStatistics statistics = new JobStatistics("ss", pool);
startPrintStatistics(statistics);
dispatcher.start();
System.out.println("Hit enter to stop.");