vid 总量不能超出 uint32,例如: https://github.com/Tencent/plato/issues/61 https://github.com/Tencent/plato/issues/71 但是请问,vid 最大值能否超出 uint32?(max uint32 = 4,294,967,295)(5000000000 > max uint32) 例如我的连接列表的输入数据是否可以是: from_vid to_vid 5000000000 5000000001 5000000001 5000000003 ... ... 还是我需要encode成为以下才能作为输入? 0 1 1 3 ... ...
vid 总量不能超出 uint32,例如:
#61
#71
但是请问,vid 最大值能否超出 uint32?(max uint32 = 4,294,967,295)(5000000000 > max uint32)
例如我的连接列表的输入数据是否可以是:
from_vid to_vid
5000000000 5000000001
5000000001 5000000003
... ...
还是我需要encode成为以下才能作为输入?
0 1
1 3
... ...