summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Use nolocks_localtime() for safer logging.localtimeantirez2018-07-042-2/+8
|
* Cache timezone and daylight active flag for safer logging.antirez2018-07-042-1/+14
| | | | | | With such information will be able to use a private localtime() implementation serverLog(), which does not use any locking and is both thread and fork() safe.
* Localtime: clarify is_leap_year() working with comments.antirez2018-07-041-4/+4
|
* Localtime: fix comment about leap year.antirez2018-07-041-1/+1
|
* Localtime: fix daylight saving adjustment. Use * not +.antirez2018-07-041-1/+1
|
* Localtime: fix daylight time documentation and computation.antirez2018-07-041-4/+14
|
* Localtime: add a test main() function to check the output.antirez2018-07-041-1/+15
|
* Localtime: day of month is 1 based. Convert from 0 based "days".antirez2018-07-041-2/+2
|
* Localtime: fix timezone adjustment.antirez2018-07-041-1/+2
|
* Localtime: compute year, month and day of the month.antirez2018-07-041-0/+26
|
* Localtime: basics initial calculations. Year missing.antirez2018-07-041-2/+30
|
* Localtime function skeleton and file added.antirez2018-07-041-0/+44
|
* Fix typoJack Drogon2018-07-0340-99/+99
|
* Clarify the pending_querybuf field of clients.antirez2018-07-031-3/+4
|
* Improve style of PR #5084.antirez2018-07-031-2/+8
|
* Merge pull request #5084 from chendq8/pending-querybufSalvatore Sanfilippo2018-07-034-0/+49
|\ | | | | limit the size of pending-querybuf in masterclient
| * Merge branch 'unstable' into pending-querybufchendianqiang2018-07-0361-520/+1694
| |\
| * | limit the size of pending-querybuf in masterclientchendianqiang2018-07-014-0/+48
| | |
* | | Set repl_down_since to zero on state change.antirez2018-07-031-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PR #5081 fixes an "interesting" bug about Redis Cluster failover but in general about the updating of repl_down_since, that is used in order to count the time a slave was left disconnected from its master. While the fix provided resolves the specific issue, in general the validity of repl_down_since is limited to states that are different than the state CONNECTED, and the disconnected time is set when the state is DISCONNECTED. However from CONNECTED to other states, the state machine must always go to DISCONNECTED first. So it makes sense to set the field to zero (since it is meaningless in that context) when the state is set to CONNECTED.
* | | Merge pull request #5081 from trevor211/fixClusterFailoverSalvatore Sanfilippo2018-07-032-1/+78
|\ \ \ | |_|/ |/| | cluster failover bug
| * | fix server.repl_down_since resetting, so that slaves could failoverWuYunlong2018-06-301-1/+1
| | | | | | | | | | | | automatically as expected.
| * | cluster.tcl: Add master consecutively down test.WuYunlong2018-06-301-0/+77
| | |
* | | addReplySubSyntaxError() renamed to addReplySubcommandSyntaxError().antirez2018-07-0212-14/+14
| | |
* | | Merge pull request #4998 from itamarhaber/module_command_helpSalvatore Sanfilippo2018-07-0212-74/+92
|\ \ \ | | | | | | | | Module command help
| * | | Applies addReplySubSyntaxError to stream commandsItamar Haber2018-06-121-2/+2
| | | |
| * | | Merge branch 'unstable' into module_command_helpItamar Haber2018-06-099-26/+171
| |\ \ \
| * | | | Capitalizes subcommands & orders lexicographicallyItamar Haber2018-06-097-57/+57
| | | | |
| * | | | Capitalizes subscommandsItamar Haber2018-06-091-3/+3
| | | | |
| * | | | Globally applies addReplySubSyntaxErrorItamar Haber2018-06-078-12/+8
| | | | |
| * | | | Adds MODULE HELP and implements addReplySubSyntaxErrorItamar Haber2018-06-073-2/+24
| | | | |
* | | | | Merge pull request #5071 from akshaynagpal/patch-2Salvatore Sanfilippo2018-07-021-1/+3
|\ \ \ \ \ | | | | | | | | | | | | Added link to Google Group
| * | | | | Added link to Google GroupAkshay Nagpal2018-06-271-1/+3
| | | | | |
* | | | | | Merge pull request #5068 from shenlongxing/fix-rename-commandSalvatore Sanfilippo2018-07-021-0/+5
|\ \ \ \ \ \ | | | | | | | | | | | | | | fix empty string for sentinel rename-command
| * | | | | | fix empty string for sentinel rename-commandshenlongxing2018-06-281-0/+5
| | | | | | |
* | | | | | | Merge pull request #5090 from trevor211/test_helper_tclSalvatore Sanfilippo2018-07-021-1/+0
|\ \ \ \ \ \ \ | |_|_|_|_|/ / |/| | | | | | fix tests/test_helper.tcl with --wait-server option.
| * | | | | | fix tests/test_helper.tcl with --wait-server option.WuYunlong2018-07-021-1/+0
|/ / / / / / | | | | | | | | | | | | | | | | | | Issue #5063 added --wait-server option, but can not work.
* | | | | | Change CLIENT LIST TYPE help string.antirez2018-06-291-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Making it more similar to KILL.
* | | | | | Merge pull request #5075 from soloestoy/client-list-typesSalvatore Sanfilippo2018-06-294-6/+21
|\ \ \ \ \ \ | | | | | | | | | | | | | | FEATURE: implements client list type option
| * | | | | | clients: add type option for client listzhaozhao.zz2018-06-284-6/+20
| | | | | | |
| * | | | | | clients: show pubsub flag in client listzhaozhao.zz2018-06-281-0/+1
| | |/ / / / | |/| | | |
* | | | | | Merge pull request #5074 from soloestoy/fix-compile-warningSalvatore Sanfilippo2018-06-292-2/+2
|\ \ \ \ \ \ | | | | | | | | | | | | | | fix some compile warnings
| * | | | | | fix some compile warningszhaozhao.zz2018-06-282-2/+2
| |/ / / / /
* | | | | | Merge pull request #5076 from 0xtonyxia/add-no-auth-warning-optionSalvatore Sanfilippo2018-06-291-8/+21
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add no auth warning option
| * | | | | | Check if password is used on command line interface.dejun.xdj2018-06-281-1/+1
| | | | | | |
| * | | | | | Fix trailing white space.dejun.xdj2018-06-281-1/+1
| | | | | | |
| * | | | | | Fix code format issue.dejun.xdj2018-06-281-4/+4
| | | | | | |
| * | | | | | Don't output password warning message when --no-auth-warning is used.dejun.xdj2018-06-281-1/+10
| | | | | | |
| * | | | | | Avoid -Woverlength-strings compile warning.dejun.xdj2018-06-281-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Using another fprintf call to output the rest help message.
| * | | | | | Add --no-auth-warning help message.dejun.xdj2018-06-281-0/+2
| |/ / / / /
* | | | | | Rax library updated (node callback).antirez2018-06-282-5/+19
|/ / / / /