Results 30 comments of Oleg Babin
trafficstars

In de0a346f17e690aed19384577ed5157476f8fa3a we removed redundant fullscan from build stats We can think about implementing a view that build stats on start and increment it then (see https://github.com/tarantool/queue/pull/93)

Related to https://github.com/tarantool/tarantool/issues/5137

@eljashm I can extend my example: ```lua box.cfg{listen = 3301} x = {} function test() return x end box.schema.func.create('test') box.schema.user.passwd('admin', 'test') conn = require('net.box').connect('admin:test@localhost:3301') y = conn:call('test') y == x...

@Totktonada https://github.com/tarantool/tarantool/commit/0bcf9a59d700a9d2f33efff987c765a72fd3cb7b#diff-a9dd9be71f8af749f288abb6304a5185R1555 : `msgpack.decode(msgpack.encode(...))` is applied only for "cdata" type. Simple tables could be modified after call.

``` tarantool> box.space.test:insert{1} -- same duplicate, but succeeds with a no-op before_replace trigger! --- - [1] ... ``` Probably it's known feature https://github.com/tarantool/tarantool/issues/4503#issuecomment-557903138

Looks similar to https://github.com/tarantool/tarantool/issues/5130

> ffi pipe and popen popen are not compatible (by interfaces); This issue was written when 1.10 was relevant. Currently it's not so. You don't need to care about ffi...

You can consider also https://pyre-check.org/

Any value will be serialized as BOC but the question is a source or destination type of such serialization. There was a such fix: https://github.com/ton-blockchain/ton/commit/179415f815241be1965de0adea73f829f5b2eae8 that solved a half of...

See also https://github.com/tarantool/tarantool/issues/7970