Redis.set

Set the string value as value of the key. The string can't be longer than 1073741824 bytes (1 GB). <p> Time complexity: O(1) @param key @param value @return Status code reply

  1. string set(string key, string value)
    class Redis
    string
    set
    (
    string key
    ,
    string value
    )
  2. alias set = BinaryRedis.set
  3. string set(string key, string value, SetParams params)

Meta