1. <small id='3vu2n'></small><noframes id='3vu2n'>

    <i id='3vu2n'><tr id='3vu2n'><dt id='3vu2n'><q id='3vu2n'><span id='3vu2n'><b id='3vu2n'><form id='3vu2n'><ins id='3vu2n'></ins><ul id='3vu2n'></ul><sub id='3vu2n'></sub></form><legend id='3vu2n'></legend><bdo id='3vu2n'><pre id='3vu2n'><center id='3vu2n'></center></pre></bdo></b><th id='3vu2n'></th></span></q></dt></tr></i><div id='3vu2n'><tfoot id='3vu2n'></tfoot><dl id='3vu2n'><fieldset id='3vu2n'></fieldset></dl></div>

    <tfoot id='3vu2n'></tfoot>

      • <bdo id='3vu2n'></bdo><ul id='3vu2n'></ul>
      <legend id='3vu2n'><style id='3vu2n'><dir id='3vu2n'><q id='3vu2n'></q></dir></style></legend>

      使用 java sdk 从具有哈希范围模式的给定哈希键查询 DynamoDB 中的所有项目

      Query all items in DynamoDB from a given hash key with a hash-range schema using java sdk(使用 java sdk 从具有哈希范围模式的给定哈希键查询 DynamoDB 中的所有项目)

    1. <tfoot id='5ZRxk'></tfoot><legend id='5ZRxk'><style id='5ZRxk'><dir id='5ZRxk'><q id='5ZRxk'></q></dir></style></legend>
      <i id='5ZRxk'><tr id='5ZRxk'><dt id='5ZRxk'><q id='5ZRxk'><span id='5ZRxk'><b id='5ZRxk'><form id='5ZRxk'><ins id='5ZRxk'></ins><ul id='5ZRxk'></ul><sub id='5ZRxk'></sub></form><legend id='5ZRxk'></legend><bdo id='5ZRxk'><pre id='5ZRxk'><center id='5ZRxk'></center></pre></bdo></b><th id='5ZRxk'></th></span></q></dt></tr></i><div id='5ZRxk'><tfoot id='5ZRxk'></tfoot><dl id='5ZRxk'><fieldset id='5ZRxk'></fieldset></dl></div>

            <bdo id='5ZRxk'></bdo><ul id='5ZRxk'></ul>

                <tbody id='5ZRxk'></tbody>

              <small id='5ZRxk'></small><noframes id='5ZRxk'>

              • 本文介绍了使用 java sdk 从具有哈希范围模式的给定哈希键查询 DynamoDB 中的所有项目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我实际上是不正确的.当我打算查询解释我的错误的索引时,我正在查询表.不过 Vikdor 的解决方案是有效的.

                I was actually incorrect. I was querying the table when I meant to query an index which explains my error. Vikdor's solution is a valid one though.

                原文:我在 DynamoDB 中有一个带有哈希范围键模式的表.我需要能够获取与特定哈希键关联的所有项目,但它似乎需要一个范围键条件.我的问题是我想要每个范围键,但没有通配符选项.截至目前,我的范围键是一个字符串,我能想到的唯一方法是查询所有大于或等于我可以使用的最小 ascii 字符的范围键,因为文档说它是根据 ascii 字符值排序的.

                ORIGINAL: I have a table with a Hash-Range key schema in DynamoDB. I need to be able to get all items associated with a specific hash key but it seems to require a range key condition. My issue is I want EVERY range key but there is no wildcard option. As of right now my range key is a string and the only way I could think to do this is by querying all range keys greater or equal to the smallest ascii characters I can use since the documentation says it sorts based on ascii character values.

                我研究过扫描,但似乎只会读取整个表格,这不是一个选项.

                I looked into scanning but it appears that simply will read the entire table which is NOT an option.

                有没有更好的方法来查询哈希键的所有值,或者任何人都可以确认使用带有 ascii 字符的方法是否有效?

                Is there any better way to query for all values of a hash key or can anyone confirm that using the method with the ascii character will work?

                推荐答案

                但它似乎需要一个范围键条件.

                but it seems to require a range key condition.

                这听起来不是真的.

                我使用 DynamoDBMapper 并使用 DynamoDBQueryExpression 查询具有给定 HashKey 的所有记录,如下所示:

                I use DynamoDBMapper and use DynamoDBQueryExpression to query all the records with a given HashKey as follows:

                DynamoDBQueryExpression<DomainObject> query = 
                    new DynamoDBQueryExpression<DomainObject>();
                DomainObject hashKeyValues = new DomainObject();
                hashKeyValues.setHashKey(hashKeyValue);
                query.setHashKeyValues(hashKeyValues);
                // getMapper() returns a DynamoDBMapper object with the appropriate 
                // AmazonDynamoDBClient object.
                List<DomainObject> results = getMapper().query(query);
                

                HTH.

                这篇关于使用 java sdk 从具有哈希范围模式的给定哈希键查询 DynamoDB 中的所有项目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Lucene Porter Stemmer not public(Lucene Porter Stemmer 未公开)
                How to index pdf, ppt, xl files in lucene (java based or python or php any of these is fine)?(如何在 lucene 中索引 pdf、ppt、xl 文件(基于 java 或 python 或 php 中的任何一个都可以)?)
                KeywordAnalyzer and LowerCaseFilter/LowerCaseTokenizer(KeywordAnalyzer 和 LowerCaseFilter/LowerCaseTokenizer)
                How to search between dates (Hibernate Search)?(如何在日期之间搜索(休眠搜索)?)
                How to get positions from a document term vector in Lucene?(如何从 Lucene 中的文档术语向量中获取位置?)
                Java Lucene 4.5 how to search by case insensitive(Java Lucene 4.5如何按不区分大小写进行搜索)
                <tfoot id='J1uz6'></tfoot>

                  • <bdo id='J1uz6'></bdo><ul id='J1uz6'></ul>
                    • <small id='J1uz6'></small><noframes id='J1uz6'>

                      <legend id='J1uz6'><style id='J1uz6'><dir id='J1uz6'><q id='J1uz6'></q></dir></style></legend>

                        <tbody id='J1uz6'></tbody>
                        <i id='J1uz6'><tr id='J1uz6'><dt id='J1uz6'><q id='J1uz6'><span id='J1uz6'><b id='J1uz6'><form id='J1uz6'><ins id='J1uz6'></ins><ul id='J1uz6'></ul><sub id='J1uz6'></sub></form><legend id='J1uz6'></legend><bdo id='J1uz6'><pre id='J1uz6'><center id='J1uz6'></center></pre></bdo></b><th id='J1uz6'></th></span></q></dt></tr></i><div id='J1uz6'><tfoot id='J1uz6'></tfoot><dl id='J1uz6'><fieldset id='J1uz6'></fieldset></dl></div>