如果我过早地在 robot.brain 中设置一个值,它会被 hubot-redis-brain 覆盖

If I set a value in robot.brain too early, it gets overwritten by hubot-redis-brain

如果我在脚本 module.exports 的正文中初始化 robot.brain 中的 属性,它不起作用(请参阅下面的代码)。如果我在响应期间初始化它,它就可以工作。我假设它被 hubot-redis-brain 覆盖是否正确?我该如何更好地修复它?

module.exports = (robot) => {
    robot.logger.debug("Setting the fucking property");
    robot.brain.set("stringproperty", "stringvalue");
    robot.logger.debug("SET!");
    // logs these two entries before 'INFO hubot-redis-brain: Data for hubot brain retrieved from Redis'

    const respondAndLog = (res, message) => {
        robot.logger.debug("Responding: " + message);
        res.reply(message);
    };

    robot.respond(/get_stringproperty/, (res) => {
        respondAndLog(res, `${robot.brain.get("stringproperty")}`);
        // prints null. WTF?
    });

    robot.respond(/get_laterinitializedproperty/, (res) => {
        robot.brain.set("laterinitializedproperty", "laterinitializedvalue");
        respondAndLog(res, `${robot.brain.get("laterinitializedproperty")}`);
    // prints laterinitializedproperty, works OK
    });
};

hubot-redis-brain 使 robot.brain 在从 redis 加载数据或初始化数据时发出 "connected" 事件,请参阅 [https://github.com/hubotio/hubot-redis-brain/blob/487dd4a9641f35ffb5ae18fb5e1b09e8114c4b70/src/redis-brain.js#L55](see 第 55 和 59 行)。所以这是应该如何修复:

robot.brain.on("connected", () => {
    robot.logger.debug("Setting the fucking property");
    robot.brain.set("stringproperty", "stringvalue");
    robot.logger.debug("SET!");
});