Jamm\Memory\RedisServer::hDel PHP Method

hDel() public method

public hDel ( $key, $field )
    public function hDel($key, $field)
    {
        if (!is_array($field)) {
            $field = func_get_args();
        } else {
            array_unshift($field, $key);
        }
        return $this->__call('hdel', $field);
    }