枚举 Amazon SimpleDB 中的键
我正在尝试枚举 Amazon SimpleDB 中的键。在 SQL 中,它会是这样的:
select unique itemName() from domain;
我已经四处搜索但没有找到任何方法来做到这一点。有什么帮助吗?
I'm trying to enumerate keys in Amazon SimpleDB. In SQL, it would be something like:
select unique itemName() from domain;
I've searched around but didn't find any way to do this. Any help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据定义,域中的项目是唯一的,所以您就快到了:
By definition, items in a domain are unique, so you were almost there:
AFAIK SimpleDB 并不做
唯一
,但除此之外:应该可以工作,并且您可以非常轻松地删除重复项(如果有),因为您正在获取名称排序顺序(例如Python中的itertools.groupby,以及您最喜欢的语言中的任何类似机制)。
AFAIK SimpleDB doesn't do
unique
, but apart from that:should work, and you can remove duplicates (if any) very easily, since you're getting the names in sorted order (e.g.
itertools.groupby
in Python, and whatever analogous mechanism in whatever is your favorite language).