private final DBOperationExecutor executor;
public MungbeanConfiguration(String host, int port) {
List<Authentication> auths = new ArrayList<Authentication>();
Settings settings = new Settings();
executor = new SingleNodeDbOperationExecutor(settings, new Server(host, port, auths.toArray(new Authentication[auths.size()])));
}