使用 flatbuffer mutable 会有多少性能损失?
是否“正确”使用平面缓冲区来拥有一个应该是可编辑的对象/结构(即游戏状态)
在我的示例中,我目前有以下课程:
class Game:
std::vector<Player>;
int frames;
class Player:
std::string name;
int oil;
std::vector<Unit>;
class Unit:
int id;
int hp
...
为每个存储有关每个单元的所有信息的对象使用平面缓冲区是否明智?或者可变的 flatbuffer 会降低性能吗?
如果 flatbuffers 对于这项工作来说是错误的工具,应该使用哪种技术?