03-getitem-test.js - Amazon DynamoDB
Amazon Web Services 文档中描述的 Amazon Web Services 服务或功能可能因区域而异。要查看适用于中国区域的差异,请参阅 中国的 Amazon Web Services 服务入门 (PDF)

03-getitem-test.js

03-getitem-test.js 程序在 GetItem 上执行 TryDaxTable 操作。

/** * Copyright 2010-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * This file is licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. A copy of * the License is located at * * http://aws.amazon.com/apache2.0/ * * This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the * specific language governing permissions and limitations under the License. */ const AmazonDaxClient = require('amazon-dax-client'); var AWS = require("aws-sdk"); var region = "us-west-2"; AWS.config.update({ region: region }); var ddbClient = new AWS.DynamoDB.DocumentClient() var daxClient = null; if (process.argv.length > 2) { var dax = new AmazonDaxClient({endpoints: [process.argv[2]], region: region}) daxClient = new AWS.DynamoDB.DocumentClient({service: dax }); } var client = daxClient != null ? daxClient : ddbClient; var tableName = "TryDaxTable"; var pk = 1; var sk = 10; var iterations = 5; for (var i = 0; i < iterations; i++) { var startTime = new Date().getTime(); for (var ipk = 1; ipk <= pk; ipk++) { for (var isk = 1; isk <= sk; isk++) { var params = { TableName: tableName, Key:{ "pk": ipk, "sk": isk } }; client.get(params, function(err, data) { if (err) { console.error("Unable to read item. Error JSON:", JSON.stringify(err, null, 2)); } else { // GetItem succeeded } }); } } var endTime = new Date().getTime(); console.log("\tTotal time: ", (endTime - startTime) , "ms - Avg time: ", (endTime - startTime) / iterations, "ms"); }