Aerospike\LDT\LList::addMany PHP 메소드

addMany() 공개 메소드

The elements added must be consistently the same type (string, integer, array).
public addMany ( array $values ) : integer
$values array
리턴 integer status code of the operation
    public function addMany(array $values)
    {
        $status = $this->client->apply($this->key, 'llist', 'add', array($this->bin, $values));
        $this->processStatusCode($status);
        return $this->errorno;
    }