GAE Go 版本 3 API 错误
我正在尝试将一个非常简单的网络应用程序更新到 Go GAE 的版本 3。每当我在数据存储中查询我知道存在的特定对象时,我都会收到此错误,但其他查询似乎会默默失败。您使用数据存储的方式是否已更改(排除函数参数 - 我的新代码可以编译!)?
错误 = API 错误 4(datastore_v3:NEED_INDEX):找不到匹配的索引。
谢谢
I'm attempting to update a pretty trivial web-app to version 3 of Go GAE. I get this error whenever I query the datastore for a specific object that I know is there, but other queries seem to fail silently. Has the way you use the datastore changed (function parameters excluded - my new code does compile!)?
Error = API error 4 (datastore_v3: NEED_INDEX): no matching index found.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在尝试执行需要自定义索引的查询,但您尚未指定索引(或者尚未完成构建)。您应该在本地 dev_appserver 上充分运行您的应用程序,然后上传您的应用程序以更新索引定义。
You're attempting to execute a query that requires a custom index, but you haven't specified one (or it hasn't finished building). You should fully exercise your app on your local dev_appserver, then upload your app to update the index definitions.