-
When i call the print function via tarantool client or netcat on a 251 bytes string, it replace a last byte in the string by a zero byte.
```
$ nc 127.17.3.8 6605
-
Tarantool supports stored procedures written in C/C++ since 1.6.7.
There are some examples in our tests suite:
https://github.com/tarantool/tarantool/blob/1.7/test/box/function1.c#L16
https://github.…
-
```
package.loaded.mymodule = nil
mymodule = require('mymodule')
```
does not reload '*.so' module
-
```
export LDFLAGS='-specs=/usr/lib/rpm/redhat/redhat-hardened-ld'
cat /usr/lib/rpm/redhat/redhat-hardened-ld
*self_spec:
+ %{!shared:%{!r:-pie}}
-
I have Ubuntu 12.04 and Tarantool 1.6 pulled from source today.
I execute these requests:
``` lua
box.cfg{}
box.schema.space.create('T')
box.space.T:create_index('primary',{})
box.space.T:on_replace…
-
Hi all,
In MongoDB there is a feature called capped collections which are fixed-size lists that support high-throughput operations that insert, retrieve, and delete values based on insertion order.
…