限制在Go

时间:2017-07-20 17:03:22

标签: google-cloud-bigtable

是否可以限制从Go中的Bigtable查询返回的单元格数量(而不是行数)?我看到一个RowFilter来限制行数,但不是实际的单元格数。

1 个答案:

答案 0 :(得分:2)

this提交开始,有3种方法可以限制返回的单元格数量:

// LatestNFilter returns a filter that matches the most recent N cells in each column.

// CellsPerRowOffsetFilter returns a filter that skips the first N cells of each row, matching all subsequent cells.

// CellsPerRowLimitFilter returns a filter that matches only the first N cells of each row.

LatestNFilter已经存在了一段时间,但其他两个是新的。