数组中字段的 Mongokit 架构索引
如何在此 mongokit 架构中的 items.id 字段上创建索引?
我尝试在 items.id 上创建索引,但它抛出 ValueError: 索引错误:无法在结构中找到 items.id
。
structure = {
'items': [{
'id': int,
}]
}
indexes = [{
'fields': ['items.id'],
}]
How do I create index on items.id field in this mongokit schema?
I tried to creating index on items.id, but it's throwing ValueError: Error in indexes: can't find items.id in structure
.
structure = {
'items': [{
'id': int,
}]
}
indexes = [{
'fields': ['items.id'],
}]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前,MongoKit 的索引验证不支持索引数组的验证。对于此用例,您已禁用索引验证:
您可以在此处对此问题进行投票: http:// /github.com/namlook/mongokit/issues#issue/42
Currently, MongoKit's index validation doesn't support validation on indexed array. For this usecase, you have disabled indexes validation:
you can vote on this issue here : http://github.com/namlook/mongokit/issues#issue/42