1. 05 Apr, 2022 1 commit
  2. 01 Feb, 2022 1 commit
  3. 18 Jan, 2022 1 commit
    • Wang Yuan's avatar
      Use const char pointer in redismodule.h as far as possible (#10064) · d697daa7
      Wang Yuan authored
      When I used C++ to develop a redis module. i  used `string.data()` as the second parameter `ele`
      of  `RedisModule_DigestAddStringBuffer`, but there is a warning, since we never change the `ele`,
      i think we should use `const char` for it.
      
      This PR adds const to just a handful of module APIs that required it, all not very widely used.
      The implication is a breaking change in terms of compilation error that's easy to resolve, and no ABI impact.
      The affected APIs are around Digest, Info injection, and Cluster bus messages.
      d697daa7
  4. 19 Nov, 2021 1 commit
  5. 19 Sep, 2018 1 commit
  6. 13 Sep, 2018 1 commit
  7. 09 Apr, 2018 1 commit
    • antirez's avatar
      Modules API: blocked client free callback modified to get a context. · 49e09823
      antirez authored
      Note that this was an experimental API that can only be enabled with
      REIDSMODULE_EXPERIMENTAL_API, so it is subject to change until its
      promoted to stable API. Sorry for the breakage, it is trivial to
      resolve btw. This change will not be back ported to Redis 4.0.
      49e09823
  8. 30 Mar, 2018 2 commits