BinaryRedis.info

Provide information and statistics about the server. <p> The info command returns different information and statistics about the server in an format that's simple to parse by computers and easy to read by humans. <p> <b>Format of the returned string:</b> <p> All the fields are in the form field:value

<pre>

  1. string info()
    class BinaryRedis
    string
    info
    ()
  2. string info(string section)

Detailed Description

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>

<b>Notes</b> <p> used_memory is returned in bytes, and is the total number of bytes allocated by the program using malloc. <p> uptime_in_days is redundant since the uptime in seconds contains already the full uptime information, this field is only mainly present for humans. <p> changes_since_last_save does not refer to the number of key changes, but to the number of operations that produced some kind of change in the dataset. <p> @return Bulk reply

Meta