#sidebar <ahref="ControlCommandsSidebar.html">ControlCommandsSidebar</a><h1><aname="INFO">INFO</a></h1><blockquote>The info command returns different information and statistics about the server in an format that's simple to parse by computers and easy to red by huamns.</blockquote>
<h2><aname="Return value">Return value</a></h2><ahref="ReplyTypes.html">Bulk reply</a>, specifically in the following format:<br/><br/><preclass="codeblock python"name="code">
edis_version:0.07
connected_clients:1
connected_slaves:0
used_memory:3187
changes_since_last_save:0
last_save_time:1237655729
total_connections_received:1
total_commands_processed:1
uptime_in_seconds:25
uptime_in_days:0
</pre>All the fields are in the form <codename="code"class="python">field:value</code><h2><aname="Notes">Notes</a></h2><ul><li><codename="code"class="python">used_memory</code> is returned in bytes, and is the total number of bytes allocated by the program using <codename="code"class="python">malloc</code>.</li><li><codename="code"class="python">uptime_in_days</code> is redundant since the uptime in seconds contains already the full uptime information, this field is only mainly present for humans.</li><li><codename="code"class="python">changes_since_last_save</code> does not refer to the number of key changes, but to the number of operations that produced some kind of change in the dataset.</li></ul>