summaryrefslogtreecommitdiff
path: root/doc/ConfigCommand.html
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ConfigCommand.html')
-rw-r--r--doc/ConfigCommand.html76
1 files changed, 76 insertions, 0 deletions
diff --git a/doc/ConfigCommand.html b/doc/ConfigCommand.html
new file mode 100644
index 000000000..1d7e49c2c
--- /dev/null
+++ b/doc/ConfigCommand.html
@@ -0,0 +1,76 @@
+
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
+<html>
+ <head>
+ <link type="text/css" rel="stylesheet" href="style.css" />
+ </head>
+ <body>
+ <div id="page">
+
+ <div id='header'>
+ <a href="index.html">
+ <img style="border:none" alt="Redis Documentation" src="redis.png">
+ </a>
+ </div>
+
+ <div id="pagecontent">
+ <div class="index">
+<!-- This is a (PRE) block. Make sure it's left aligned or your toc title will be off. -->
+<b>ConfigCommand: Contents</b><br>&nbsp;&nbsp;<a href="#CONFIG GET _pattern_ (Redis &gt;">CONFIG GET _pattern_ (Redis &gt;</a><br>&nbsp;&nbsp;<a href="#CONFIG SET _parameter_ _value_ (Redis &gt;">CONFIG SET _parameter_ _value_ (Redis &gt;</a><br>&nbsp;&nbsp;&nbsp;&nbsp;<a href="#CONFIG GET _pattern_">CONFIG GET _pattern_</a><br>&nbsp;&nbsp;&nbsp;&nbsp;<a href="#CONFIG SET _parameter_ _value_">CONFIG SET _parameter_ _value_</a><br>&nbsp;&nbsp;&nbsp;&nbsp;<a href="#Parameters value format">Parameters value format</a><br>&nbsp;&nbsp;&nbsp;&nbsp;<a href="#See Also">See Also</a>
+ </div>
+
+ <h1 class="wikiname">ConfigCommand</h1>
+
+ <div class="summary">
+
+ </div>
+
+ <div class="narrow">
+ &iuml;&raquo;&iquest;#sidebar <a href="ControlCommandsSidebar.html">ControlCommandsSidebar</a><h1><a name="CONFIG GET _pattern_ (Redis &gt;">CONFIG GET _pattern_ (Redis &gt;</a></h1> 2.0)=
+<h1><a name="CONFIG SET _parameter_ _value_ (Redis &gt;">CONFIG SET _parameter_ _value_ (Redis &gt;</a></h1> 2.0)=<br/><br/><blockquote>The CONFIG command is able to retrieve or alter the configuration of a runningRedis server. Not all the configuration parameters are supported.</blockquote>
+<blockquote>CONFIG has two sub commands, GET and SET. The GET command is used to readthe configuration, while the SET command is used to alter the configuration.</blockquote>
+<h2><a name="CONFIG GET _pattern_">CONFIG GET _pattern_</a></h2><blockquote>CONFIG GET returns the current configuration parameters. This sub commandonly accepts a single argument, that is glob style pattern. All theconfiguration parameters matching this parameter are reported as alist of key-value pairs. Example:</blockquote><pre class="codeblock python" name="code">
+$ redis-cli config get '*'
+1. &quot;dbfilename&quot;
+2. &quot;dump.rdb&quot;
+3. &quot;requirepass&quot;
+4. (nil)
+5. &quot;masterauth&quot;
+6. (nil)
+7. &quot;maxmemory&quot;
+8. &quot;0\n&quot;
+9. &quot;appendfsync&quot;
+10. &quot;everysec&quot;
+11. &quot;save&quot;
+12. &quot;3600 1 300 100 60 10000&quot;
+
+$ redis-cli config get 'm*'
+1. &quot;masterauth&quot;
+2. (nil)
+3. &quot;maxmemory&quot;
+4. &quot;0\n&quot;
+</pre>The return type of the command is a <a href="ReplyTypes.html">bulk reply</a>.<h2><a name="CONFIG SET _parameter_ _value_">CONFIG SET _parameter_ _value_</a></h2><blockquote>CONFIG SET is used in order to reconfigure the server, setting a specificconfiguration parameter to a new value.</blockquote>
+<blockquote>The list of configuration parameters supported by CONFIG SET can beobtained issuing a <code name="code" class="python">CONFIG GET *</code> command.</blockquote>
+<blockquote>The configuration set using CONFIG SET is immediately loaded by the Redisserver that will start acting as specified starting from the next command.</blockquote>
+<blockquote>Example:</blockquote><pre class="codeblock python python" name="code">
+$ ./redis-cli
+redis&gt; set x 10
+OK
+redis&gt; config set maxmemory 200
+OK
+redis&gt; set y 20
+(error) ERR command not allowed when used memory &gt; 'maxmemory'
+redis&gt; config set maxmemory 0
+OK
+redis&gt; set y 20
+OK
+</pre><h2><a name="Parameters value format">Parameters value format</a></h2><blockquote>The value of the configuration parameter is the same as the one of thesame parameter in the Redis configuration file, with the following exceptions:</blockquote>
+<ul><li> The <code name="code" class="python">save</code> paramter is a list of space-separated integers. Every pair of integers specify the time and number of changes limit to trigger a save. For instance the command <code name="code" class="python">CONFIG SET save &quot;3600 10 60 10000&quot;</code> will configure the server to issue a background saving of the RDB file every 3600 seconds if there are at least 10 changes in the dataset, and every 60 seconds if there are at least 10000 changes. To completely disable automatic snapshots just set the parameter as an empty string.</li><li> All the integer parameters representing memory are returned and accepted only using bytes as unit.</li></ul>
+<h2><a name="See Also">See Also</a></h2>The <a href="InfoCommand.html">INFO</a> command can be used in order to read configuriaton parameters that are not available in the CONFIG command.
+ </div>
+
+ </div>
+ </div>
+ </body>
+</html>
+