Results 7 comments of Oleg Milekhin

Also have this issue, in debugger the place with error was in call `.view(int)` Managed to solve it locally, changed `view(int)` to `view('int64')` but then we need to changes nanoseconds...

## Write I made a comparison [bench_kafka_drivers.txt](https://github.com/tulios/kafkajs/files/3500573/bench_kafka_drivers.txt) ### Usage difference #### node-rdkafka Config ``` const rdProducerConf = { 'metadata.broker.list': url, 'queue.buffering.max.ms': 10, 'queue.buffering.max.messages': 100000, 'queue.buffering.max.kbytes': 1048576 }; ``` And you...

Well.. producing 10000 messages and then waiting for delivery callbacks for all of them works like this (node-rdkafka producing became 2 times slower) ``` node node/tmp/bench_kafka_drivers.js 10000 N: 10000 topic:...

May be, you make same mistake as I do: It happens to me when I use prod API keys and set `is_sandbox=True` in client constructor or vice versa I use...

have same problem changing port doesn't help first i always receive error ``` Issue occured on server 127.0.0.1: 11211 { "server": "127.0.0.1:11211", "tokens": [ "11211", "127.0.0.1" ], "messages": [ "object...

Looks like I got it! this is how my **memcached** is started ``` memcached -p 11212 -m 256 -c 1024 -I 20m ``` and this was the client creation ```...

I made it work [Original example](https://tgui.xelene.me/?path=/docs/layout-tabbar--documentation) lacks the part where you make you tab visible In my example it is `{tab()}` ```TSX import { FixedLayout, Tabbar } from "@telegram-apps/telegram-ui"; import...