* @return
*/
protected Connection createSynchConnection (String host, int port, int database, byte[] credentials, boolean isShared, RedisVersion redisVersion)
{
InetAddress address = null;
Connection synchConnection = null;
try {
address = InetAddress.getByName(host);
ConnectionSpec spec = DefaultConnectionSpec.newSpec(address, port, database, credentials);
synchConnection = createSynchConnection(spec, isShared, redisVersion);