如何使用googledatastore包设置“keys_only”

问题描述 投票:0回答:1

我想在GoogleCloudDataFlow上使用googledatastore包从数据存储中读取。

但是,我在googledatastore文档中找不到“keys_only”查询。 http://googledatastore.readthedocs.io/en/latest/googledatastore.html

如何在googledatastore上设置“keys_only”?

python google-cloud-datastore google-cloud-dataflow
1个回答
2
投票

使用投影查询

  from googledatastore import helper
  helper.add_projection(
    query,
    '__key__')
© www.soinside.com 2019 - 2024. All rights reserved.