我有一个应用程序运行在App Engine Standar Environment中,使用Google Cloud Tools和Datanucleus框架来访问数据。现在,我想改进我的应用程序,并使用SpringBoot、Spring Cloud GCP和本地Cloud Datastore Emulator创建一个新的应用程序。当我尝试在Datastore Emulator上执行查询时,它工作得很好,但是当查询包含IN或OR时,仿真器会记录和错误。N: Exception when h
我想从GCP-DataStore表中获取大部分数据,以获取ID列表。column3,column4 FROM tableName where IDs IN (:listIds) 目前,我正在对每个Id进行迭代(用Java语言),并使用DataStoreRepository获取数据在GQL中,我们如何使用in操作符执行查询,或者如何从数据存储中获取大量数据。