Skip to content

Commit 1a42a9f

Browse files
andreyaksenovkyukhin
authored andcommitted
Replaced tarantoolctl with tt.
Part of tarantool/doc#3730
1 parent a338abe commit 1a42a9f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Can produce more then 150k messages per second and consume more then 140k messag
88
* Kafka producer and consumer implementations.
99
* Fiber friendly.
1010
* Mostly errorless functions and methods. Error handling in Tarantool ecosystem is quite a mess,
11-
some libraries throws lua native `error` while others throws `box.error` instead. `kafka` returns
12-
non critical errors as strings which allows you to decide how to handle it.
11+
some libraries throw lua native `error` while others throws `box.error` instead. `kafka` returns
12+
non-critical errors as strings which allows you to decide how to handle it.
1313

1414
## Requirements
1515
* Tarantool >= 1.10.2
@@ -24,22 +24,22 @@ non critical errors as strings which allows you to decide how to handle it.
2424

2525
## Installation
2626
```bash
27-
tarantoolctl rocks install kafka
27+
tt rocks install kafka
2828
```
2929

3030
### Build module with statically linked librdkafka
3131

32-
To install kafka module with builtin librdkafka dependency, use option `STATIC_BUILD`:
32+
To install the kafka module with builtin `librdkafka` dependency, use the `STATIC_BUILD` option:
3333

3434
```bash
35-
tarantoolctl rocks STATIC_BUILD=ON install kafka
35+
tt rocks STATIC_BUILD=ON install kafka
3636
```
3737

38-
Be aware, that this approach doesn't include static openssl.
38+
Be aware that this approach doesn't include static openssl.
3939
Instead, it assumes tarantool has openssl symbols exported.
4040
That means, kafka static build is only usable with static tarantool build.
4141

42-
For successful static build you need to compile kafka
42+
For a successful static build, you need to compile kafka
4343
against the [same version of openssl](https://github.com/tarantool/tarantool/blob/800e5ed617f7cd352ec597ce16973c7e4cad76c8/static-build/CMakeLists.txt#L11) that tarantool does.
4444

4545
## Usage

0 commit comments

Comments
 (0)