}
private void run(String password) {
try {
ConnectionSpec spec = DefaultConnectionSpec.newSpec().setCredentials(password);
JRedis jredis = new JRedisClient(spec);
jredis.ping();
if(!jredis.exists(bkey)) {
jredis.set(bkey, "Hello Again!");
System.out.format("Hello! You should run me again!\n");
}
else {
String msg = toStr ( jredis.get(bkey) );
System.out.format("%s\n", msg);
}
jredis.quit();
}
catch (RedisException e){
if (e.getCommand()==Command.PING){
System.out.format("I'll need that password! Try again with password as command line arg for this program.\n");
}