我正在尝试使用参考手册中描述的唯一 ID 。但是,我收到以下错误:
Error: P2PMapping defined at block_1Z1C1O1V:4(2)--7(73) requests module 'uid', but no module with that name is installed.
如何安装这个模块?
你的程序到底是什么?我刚刚尝试了以下 lb 脚本(这是手册中示例的简化版本):
create --unique
addblock <doc>
F[x] = id -> string(x), int(id).
R(x) -> string(x).
R("Joe").
R("Jill").
</doc>
exec <doc>
+F[x] = id <- uid<<id>> R(x).
</doc>
print F
close --destroy
结果正如预期的那样:
created workspace 'unique_workspace_2016-11-20-21-12-30'
added block 'block_1Z1B38XS'
"Jill" 10000000044
"Joe" 10000000046
deleted workspace 'unique_workspace_2016-11-20-21-12-30'