public static void main(String[] args) {
Map<String, RequestHandler> handlers = new HashMap<String, RequestHandler>();
handlers.put("/kv", new KeyValueStoreExampleRequestHandler());
Application application = new Application(handlers);
logger.debug("Starting up server on port: " + PORT);
HttpServer server = new HttpServer(application);
server.listen(PORT);
IOLoop.INSTANCE.start();
}