1. 21 Sep, 2018 1 commit
  2. 19 Sep, 2018 2 commits
  3. 13 Apr, 2018 1 commit
  4. 12 Apr, 2018 1 commit
  5. 11 Apr, 2018 1 commit
    • antirez's avatar
      Modules API: OOM_WARNING flags. · 0afac693
      antirez authored
      In some modules it may be useful to have an idea about being near to
      OOM. Anyway additionally an explicit call to get the fill ratio will be
      added in the future.
      0afac693
  6. 09 Apr, 2018 4 commits
  7. 05 Apr, 2018 1 commit
  8. 01 Apr, 2018 2 commits
  9. 30 Mar, 2018 8 commits
  10. 14 Feb, 2018 2 commits
  11. 23 Jan, 2018 1 commit
  12. 07 Jan, 2018 1 commit
  13. 28 Sep, 2017 1 commit
  14. 27 Sep, 2017 2 commits
  15. 14 Jul, 2017 1 commit
  16. 06 Jul, 2017 1 commit
  17. 02 May, 2017 1 commit
  18. 12 Jan, 2017 1 commit
  19. 30 Nov, 2016 2 commits
  20. 13 Oct, 2016 1 commit
  21. 07 Oct, 2016 3 commits
  22. 06 Oct, 2016 2 commits
    • antirez's avatar
      Fix typos in GetContextFromIO API declaration. · a5998d1f
      antirez authored
      a5998d1f
    • antirez's avatar
      Module: Ability to get context from IO context. · 152c1b68
      antirez authored
      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