1. 09 3月, 2015 1 次提交
  2. 25 2月, 2015 2 次提交
  3. 06 2月, 2015 3 次提交
    • A
      Port diskless replication to Windows · b93dc1c7
      Alexis Campailla 提交于
      During diskless replication the master forks a child, which on posix
      simply inherits the socket file descriptors for the connections to
      the slaves.
      A unix pipe is also used for the child to report the results back
      to the master.
      
      The bulk of the porting work is in making sure that the socket
      file descriptors and pipe file descriptor are propagated correctly
      from the master to its child.
      b93dc1c7
    • A
      Remove useless qfork synchronization event · b713fda5
      Alexis Campailla 提交于
      There is no apparent reason for the child to wait for the
      startOperation event to be signaled.
      b713fda5
    • A
      Refactor BeginForkOperation · 5677f532
      Alexis Campailla 提交于
      Refactor BeginForkOperation in preparation for diskless replication:
      - Separate copying of operation data and child process creation
      - Provide specific entry points for each operation type
      5677f532
  4. 02 2月, 2015 1 次提交
  5. 21 12月, 2014 1 次提交
  6. 05 12月, 2014 1 次提交
    • A
      Revisit time functions · 08e4226e
      Alexis Campailla 提交于
      Addressing https://github.com/MSOpenTech/redis/issues/188
      
      - Made gettimeofday use GetSystemTimePreciseAsFileTime when available
      - Introduced definitions for gettimeofday_fast and gettimeofday_precise,
        so that calls can be specialized based on specific usage requirements
      - Introduced GetHighResRelativeTime, for high-resolution relative time
        measurements on all Windows versions.
      08e4226e
  7. 04 12月, 2014 1 次提交
    • A
      Issue 173: add child process log messages to main log file · 7827f413
      Alexis Campailla 提交于
      Slave processes were not using the master process log file.
      On Unix this is relying on the server.logfile variable being available
      to the slave processes through fork(), and reopening the logfile
      in the slaves (on every log event).
      On Windows we don't use server.logfile and require an explicity call
      to setLogFile.
      I resorted to explicitly passing the logfile to the slaves as a
      command line argument, so the logfile argument (and logging) can be
      available to the slave before qfork and globals setup have completed.
      
      Writing to the same file atomically from multiple processes requires
      using CreateFile with FILE_APPEND_DATA, instead of fopen, which provides
      atomicity on Unix but not on Windows.
      
      Also changed the implementation to not reopen the logfile on every
      log event, and not flushing the file on every write. Performance is
      dramaticaly improved this way.
      7827f413
  8. 14 11月, 2014 1 次提交
  9. 06 11月, 2014 1 次提交
  10. 24 9月, 2014 1 次提交
  11. 17 9月, 2014 1 次提交
  12. 07 9月, 2014 1 次提交
  13. 15 8月, 2014 1 次提交
  14. 13 8月, 2014 1 次提交
  15. 01 8月, 2014 1 次提交
  16. 30 7月, 2014 1 次提交
  17. 29 7月, 2014 1 次提交
  18. 24 7月, 2014 1 次提交
  19. 23 7月, 2014 2 次提交
  20. 22 7月, 2014 1 次提交
  21. 17 7月, 2014 1 次提交
  22. 15 7月, 2014 1 次提交
  23. 08 7月, 2014 1 次提交
  24. 04 7月, 2014 2 次提交
  25. 24 6月, 2014 1 次提交
  26. 17 6月, 2014 2 次提交
  27. 15 6月, 2014 1 次提交
  28. 12 6月, 2014 1 次提交
  29. 02 6月, 2014 2 次提交
  30. 30 5月, 2014 1 次提交
  31. 28 5月, 2014 1 次提交
  32. 23 5月, 2014 1 次提交
  33. 16 5月, 2014 1 次提交