1. 10 Oct, 2014 1 commit
  2. 08 Oct, 2014 1 commit
    • antirez's avatar
      Define different types of RDB childs. · 2df8341c
      antirez authored
      We need to remember what is the saving strategy of the current RDB child
      process, since the configuration may be modified at runtime via CONFIG
      SET and still we'll need to understand, when the child exists, what to
      do and for what goal the process was initiated: to create an RDB file
      on disk or to write stuff directly to slave's sockets.
      2df8341c
  3. 07 Oct, 2014 3 commits
  4. 06 Oct, 2014 2 commits
  5. 03 Oct, 2014 2 commits
  6. 29 Sep, 2014 29 commits
  7. 26 Sep, 2014 1 commit
  8. 25 Sep, 2014 1 commit
    • antirez's avatar
      DEBUG POPULATE two args form implemented. · d4222e6b
      antirez authored
      The old DEBUG POPULATE form for automatic creation of test keys is:
      
          DEBUG POPULATE <count>
      
      Now an additional form is available:
      
          DEBUG POPULATE <count> <prefix>
      
      When prefix is not specified, it defaults to "key", so the keys are
      named incrementally from key:0 to key:<count-1>. Otherwise the specified
      prefix is used instead of "key".
      
      The command is useful in order to populate different Redis instances
      with key names guaranteed to don't collide. There are other debugging
      uses, for example it is possible to add additional N keys using a count
      of N and a random prefix at every call.
      d4222e6b