1. 13 Jul, 2023 1 commit
  2. 12 Jul, 2023 2 commits
  3. 10 Jul, 2023 1 commit
  4. 08 Jun, 2023 1 commit
  5. 01 Jun, 2023 2 commits
  6. 30 May, 2023 2 commits
  7. 29 May, 2023 1 commit
    • Viktor Söderqvist's avatar
      Helper for setting TCP_USER_TIMEOUT socket option (#1188) · b6a052fe
      Viktor Söderqvist authored
      * Implement redisSetTcpUserTimeout to set socket option TCP_USER_TIMEOUT
      
      * Documentation for redisSetTcpUserTimeout and some more undocumented functions
      
      Documentation for redisReconnect() and the setters of socket options:
      
      * redisKeepAlive()
      * redisEnableKeepAliveWithInterval()
      * redisSetTcpUserTimeout()
      b6a052fe
  8. 24 Apr, 2023 1 commit
  9. 19 Apr, 2023 1 commit
  10. 16 Apr, 2023 1 commit
  11. 15 Apr, 2023 1 commit
  12. 14 Apr, 2023 2 commits
  13. 13 Mar, 2023 1 commit
  14. 09 Mar, 2023 2 commits
  15. 08 Mar, 2023 2 commits
  16. 24 Feb, 2023 1 commit
    • Dominik Charousset's avatar
      Write a version file for the CMake package (#1165) · 1cbd5bc7
      Dominik Charousset authored
      * Write a version file for the CMake package
      
      > If no VERSION is given, the PROJECT_VERSION variable is used.
      
      Since we set the project version to `${VERSION}`, we can safely skip
      passing it to `write_basic_package_version_file` as well.
      1cbd5bc7
  17. 06 Jan, 2023 1 commit
  18. 27 Dec, 2022 1 commit
  19. 21 Dec, 2022 1 commit
  20. 16 Nov, 2022 1 commit
  21. 15 Nov, 2022 1 commit
  22. 14 Nov, 2022 1 commit
  23. 13 Nov, 2022 1 commit
  24. 10 Nov, 2022 4 commits
  25. 07 Nov, 2022 1 commit
  26. 02 Nov, 2022 2 commits
  27. 27 Oct, 2022 1 commit
  28. 24 Oct, 2022 1 commit
  29. 14 Oct, 2022 1 commit
    • Bjorn Svensson's avatar
      Fixup of PR734: Coverage of hiredis.c (#1124) · 3b15a04b
      Bjorn Svensson authored
      
      
      Improve coverage (#734)
      
      * Remove duplicate tests
      
      - double covered by:
        "Can parse RESP3 doubles"
      - bool covered via:
        "Can parse RESP3 bool"
      
      * Make (connect) timeout in test config general
      
      * Set error string in Unix connect with invalid timeout
      
      Restructure testcase since redisConnectWithTimeout() and
      redisConnectUnixWithTimeout() now behaves similar.
      
      * Use quiet flag in lcov/genhtml instead of piping to /dev/null
      
      * Fixup of redisCommandArgv test case
      
      * Update test case to match what it covers
      
      Use new test case info text since the previous one seemed copy&pasted.
      The sought coverage was the handling of the parent-chaining
      for a double object, which the test case now focuses on.
      Co-authored-by: default avatarAriel <ashtul@gmail.com>
      3b15a04b
  30. 29 Sep, 2022 1 commit
    • Bjorn Svensson's avatar
      CMake corrections for building on Windows (#1122) · c245df9f
      Bjorn Svensson authored
      * Replace use of newer CMake builtins than in v3.0.0
      
      Visual Studio generator will replace -D with /D.
      
      * Only use /Z7 flag on a Visual Studio compilator
      
      Flag is not available on a GNU compilator running on windows,
      like in a mingw64 setup.
      c245df9f