.build();
CouchDbInstance dbInstance = new StdCouchDbInstance(couchClient);
CouchDbConnector db = dbInstance.createConnector("testdb", true);
DbInfo info = db.getDbInfo();
DecimalFormat df = new DecimalFormat("#.##");
logger.info("DB info : dbName=" + info.getDbName() + ", docCount="
+ info.getDocCount() + ", diskSize=" + df.format(info.getDiskSize()
/ 1024.0 / 1024.0) + " MB");
Client john = new Client("John Smith", "USA");
john.setId("john");