get(...keys) {
    keys.forEach(k => this.validateKey(k));
    return this.conn.command([`get ${keys.join(' ')}`])
      .then(message => {
        const code = message.code;