From 58f986e1aca1fc80224c3848ec8a7317148cd456 Mon Sep 17 00:00:00 2001 From: Dmitriy Poluyanov <2296372+dpoluyanov@users.noreply.github.com> Date: Wed, 4 Apr 2018 23:02:03 +0300 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4bd6431..e8c0633 100644 --- a/README.md +++ b/README.md @@ -33,9 +33,9 @@ Client comes with bunch of configurable options. So start with `ClickHouseClient For instance we have ClickHouse cluster defined on `awesome-ch-cluster-ea1.amazon.com` at port `8999` and want to connect as user `customer` to database `examples` with our client like below: ```java var client = ClickHouseClient.bootstrap() - .remote("awesome-ch-cluster-ea1.amazon.com", 8999) - .username("customer") - .database("examples"); + .remote("awesome-ch-cluster-ea1.amazon.com", 8999) + .username("customer") + .database("examples"); ``` This is cheap client creation that doesn't block your cpu for a long time.