1. 30 3月, 2018 6 次提交
  2. 15 2月, 2018 2 次提交
  3. 23 1月, 2018 1 次提交
  4. 07 1月, 2018 1 次提交
  5. 28 9月, 2017 1 次提交
  6. 27 9月, 2017 2 次提交
  7. 14 7月, 2017 1 次提交
  8. 06 7月, 2017 1 次提交
  9. 02 5月, 2017 1 次提交
  10. 12 1月, 2017 1 次提交
  11. 01 12月, 2016 1 次提交
  12. 30 11月, 2016 1 次提交
  13. 13 10月, 2016 1 次提交
  14. 07 10月, 2016 4 次提交
  15. 06 10月, 2016 1 次提交
    • A
      Module: Ability to get context from IO context. · 152c1b68
      antirez 提交于
      It was noted by @dvirsky that it is not possible to use string functions
      when writing the AOF file. This sometimes is critical since the command
      rewriting may need to be built in the context of the AOF callback, and
      without access to the context, and the limited types that the AOF
      production functions will accept, this can be an issue.
      
      Moreover there are other needs that we can't anticipate regarding the
      ability to use Redis Modules APIs using the context in order to build
      representations to emit AOF / RDB.
      
      Because of this a new API was added that allows the user to get a
      temporary context from the IO context. The context is auto released
      if obtained when the RDB / AOF callback returns.
      
      Calling multiple time the function to get the context, always returns
      the same one, since it is invalid to have more than a single context.
      152c1b68
  16. 03 10月, 2016 1 次提交
  17. 02 10月, 2016 1 次提交
  18. 21 9月, 2016 1 次提交
  19. 03 8月, 2016 1 次提交
  20. 02 8月, 2016 1 次提交
    • A
      Modules: StringAppendBuffer() and ability to retain strings. · 7829e4ed
      antirez 提交于
      RedisModule_StringRetain() allows, when automatic memory management is
      on, to keep string objects living after the callback returns. Can also
      be used in order to use Redis reference counting of objects inside
      modules.
      
      The reason why this is useful is that sometimes when implementing new
      data types we want to reference RedisModuleString objects inside the
      module private data structures, so those string objects must be valid
      after the callback returns even if not referenced inside the Redis key
      space.
      7829e4ed
  21. 24 6月, 2016 1 次提交
  22. 23 6月, 2016 3 次提交
  23. 22 6月, 2016 1 次提交
  24. 21 6月, 2016 1 次提交
  25. 07 6月, 2016 1 次提交
  26. 04 6月, 2016 1 次提交
  27. 15 5月, 2016 1 次提交
  28. 10 5月, 2016 1 次提交