Aerospike\LDT\LDT::size PHP 메소드

size() 공개 메소드

Sets $num_elements with the number of elements in the LDT.
public size ( integer &$num_elements ) : integer
$num_elements integer returned
리턴 integer status code of the operation
    public function size(&$num_elements)
    {
        $status = $this->client->apply($this->key, $this->module, 'size', array($this->bin), $num_elements);
        $this->processStatusCode($status);
        return $status;
    }