Cloud Bigtable Client - Class OffsetFilter (1.28.3)

Reference documentation and code samples for the Cloud Bigtable Client class OffsetFilter.

A builder used to configure offset based filters.

Example:

use Google\Cloud\Bigtable\Filter;

$builder = Filter::offset();

Namespace

Google \ Cloud \ Bigtable \ Filter \ Builder

Methods

cellsPerRow

Skips the first N cells of each row, matching all subsequent cells. If duplicate cells are present, as is possible when using an Google\Cloud\Bigtable\Filter\InterleaveFilter, each copy of the cell is counted separately.

Example:

$limitFilter = $builder->cellsPerRow(2);
Parameter
NameDescription
count int

The count to offset by.

Returns
TypeDescription
Google\Cloud\Bigtable\Filter\SimpleFilter