我安装了tarantool(tarantool_box)和tarantool-client.我可以开始tarantool了
/usr/bin/tarantool_box --background
但是当我尝试连接到服务器时
/usr/bin/tarantool
我只看到管理控制台
localhost>
并且只能使用一些命令和类似SQL的查询.我不能使用用户指南中的任何命令,几乎所有以lua失败开头的命令:
lua console = require('console')
---
error: 'Lua error: [string "local console = require(''console'')"]:1: attempt to call global ''require'' (a nil value)'
...
我编写生成"随机"文本文件的程序,其中3个单词替换为存储在$keysfilename文件中的键.Keys文件结构非常简单,就像
ASD123ASD
QWE123QWE
XZC123ZXC
例如,当我使用多个线程时会出现问题
my @threads = (^32).map({
如果在任意文件上失败,则会出错
    started
Thread<17>(14) got 1
Thread<18>(15) got 2
Thread<20>(17) got 17
Thread<5>(2) got 3
Thread<16>(13) got 4
Thread<21>(18) got 5
Thread<3>(0) got 6
Thread<8>(5) got 7
Thread<12>(9) got 10
Thread<11>(8) got 8
Thread<9>(6) got 9
Thread<14>(11) got 11
Thread<15>(12) got 12
Unhandled exception: Failed to open file C:\c\perltests\00000017.txt: no such file or directory
Thread<10>(7) got 13
Thread<13>(10) got 14
Thread<7>(4) got 15
Thread<19>(16) got 16
Thread<4>(1) got 0
Thread<6>(3) …