Jamm\Memory\RedisServer::hMSet PHP Method

hMSet() public method

public hMSet ( $key, $fields )
    public function hMSet($key, $fields)
    {
        $args[] = $key;
        foreach ($fields as $field => $value) {
            $args[] = $field;
            $args[] = $value;
        }
        return $this->__call('hMSet', $args);
    }