1. 06 Jun, 2024 1 commit
  2. 11 Oct, 2020 1 commit
    • Meir Shpilraien (Spielrein)'s avatar
      Add Module API for version and compatibility checks (#7865) · adc3183c
      Meir Shpilraien (Spielrein) authored
      
      
      * Introduce a new API's: RM_GetContextFlagsAll, and
      RM_GetKeyspaceNotificationFlagsAll that will return the
      full flags mask of each feature. The module writer can
      check base on this value if the Flags he needs are
      supported or not.
      
      * For each flag, introduce a new value on redismodule.h,
      this value represents the LAST value and should be there
      as a reminder to update it when a new value is added,
      also it will be used in the code to calculate the full
      flags mask (assuming flags are incrementally increasing).
      In addition, stated that the module writer should not use
      the LAST flag directly and he should use the GetFlagAll API's.
      
      * Introduce a new API: RM_IsSubEventSupported, that returns for a given
      event and subevent, whether or not the subevent supported.
      
      * Introduce a new macro RMAPI_FUNC_SUPPORTED(func) that returns whether
      or not a function API is supported by comparing it to NULL.
      
      * Introduce a new API: int RM_GetServerVersion();, that will return the
      current Redis version in the format 0x00MMmmpp; e.g. 0x00060008;
      
      * Changed unstable version from 999.999.999 to 255.255.255
      Co-authored-by: default avatarOran Agra <oran@redislabs.com>
      Co-authored-by: default avatarYossi Gottlieb <yossigo@gmail.com>
      adc3183c
  3. 29 Sep, 2015 1 commit
  4. 14 Feb, 2015 1 commit
  5. 25 Jun, 2014 1 commit
  6. 27 May, 2013 1 commit
  7. 08 May, 2013 1 commit
  8. 02 Apr, 2013 1 commit
  9. 15 Mar, 2013 1 commit
  10. 10 Apr, 2012 1 commit
  11. 06 Apr, 2012 1 commit
  12. 28 Feb, 2012 1 commit
  13. 22 Feb, 2012 1 commit
  14. 07 Jan, 2012 1 commit
  15. 19 Dec, 2011 1 commit
  16. 13 Dec, 2011 1 commit
  17. 15 Apr, 2011 1 commit
  18. 29 Dec, 2010 1 commit
  19. 15 Dec, 2010 1 commit
  20. 05 Nov, 2010 2 commits
  21. 21 Oct, 2010 1 commit
  22. 31 Aug, 2010 1 commit
  23. 26 Aug, 2010 1 commit
  24. 01 Jul, 2010 2 commits
    • antirez's avatar
      Version is now 2.1.2 · 2c24c220
      antirez authored
      2c24c220
    • antirez's avatar
      redis.c split into many different C files. · e2641e09
      antirez authored
      networking related stuff moved into networking.c
      
      moved more code
      
      more work on layout of source code
      
      SDS instantaneuos memory saving. By Pieter and Salvatore at VMware ;)
      
      cleanly compiling again after the first split, now splitting it in more C files
      
      moving more things around... work in progress
      
      split replication code
      
      splitting more
      
      Sets split
      
      Hash split
      
      replication split
      
      even more splitting
      
      more splitting
      
      minor change
      e2641e09