Redis.psetex

PSETEX works exactly like {@link #setex(string, int, string)} with the sole difference that the expire time is specified in milliseconds instead of seconds. Time complexity: O(1) @param key @param milliseconds @param value @return Status code reply

  1. string psetex(string key, long milliseconds, string value)
    class Redis
    string
    psetex
    (
    string key
    ,,
    string value
    )
  2. alias psetex = BinaryRedis.psetex

Meta