V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
itx10237
V2EX  ›  Redis

Redis 怎样将字节串传递给 lua 脚本?

  •  1
     
  •   itx10237 · 31 天前 · 927 次点击

    struct PersonInfo { int age; char addr[10]; };

    PersonInfo person_info; person_info.age = 20; strcpy(person_info.addr, "sz");

    redisContext * cc;

    std::string name = "JACK";

    如果要将上面的 name 和 person_info 传给 lua 脚本,应该怎么做呢? 下面的写法是不完整的, 但是又不知道该怎么写才对.

    redisCommand(cc, "EVALSHA %s 1 %s", "redis 返回的 lua 脚本 sha1 值", name.c_str());

    目前尚无回复
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   2428 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 23ms · UTC 15:15 · PVG 23:15 · LAX 08:15 · JFK 11:15
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.