Redis.get

Get the value of the specified key. If the key does not exist null is returned. If the value stored at key is not a string an error is returned because GET can only handle string values. <p> Time complexity: O(1) @param key @return Bulk reply

  1. string get(string key)
    class Redis
    string
    get
    (
    string key
    )
  2. alias get = BinaryRedis.get

Meta