私はサーバレスフレームワークの初心者です。 Serverlessのベストプラクティスを学習するとき。 hereサーバレスフレームワークのベストプラクティス
「ラムダコードの外部で外部サービスを初期化する」に関する質問があります。 これを実装する方法は?たとえば :コードの下handler.js
const getOneUser = (event, callback) => {
let response = null;
// validate parameters
if (event.accountid && process.env.SERVERLESS_SURVEYTABLE) {
let docClient = new aws.DynamoDB.DocumentClient();
let params = {
TableName: process.env.SERVERLESS_USERTABLE,
Key: {
accountid: event.accountid,
}
};
docClient.get(params, function(err, data) {
if (err) {
// console.error("Unable to get an item with the request: ", JSON.stringify(params), " along with error: ", JSON.stringify(err));
return callback(getDynamoDBError(err), null);
} else {
if (data.Item) { // got response
// compose response
response = {
accountid: data.Item.accountid,
username: data.Item.username,
email: data.Item.email,
role: data.Item.role,
};
return callback(null, response);
} else {
// console.error("Unable to get an item with the request: ", JSON.stringify(params));
return callback(new Error("404 Not Found: Unable to get an item with the request: " + JSON.stringify(params)), null);
}
}
});
}
// incomplete parameters
else {
return callback(new Error("400 Bad Request: Missing parameters: " + JSON.stringify(event)), null);
}
};
問題のは、どのように私のラムダコードの外DynamoDBの初期していることです。
アップデート2:
はコードの下に最適化されていますか?
Handler.js
let survey = require('./survey');
module.exports.handler = (event, context, callback) => {
return survey.getOneSurvey({
accountid: event.accountid,
surveyid: event.surveyid
}, callback);
};
survey.js
let docClient = new aws.DynamoDB.DocumentClient();
module.exports = (() => {
const getOneSurvey = (event, callback) {....
docClient.get(params, function(err, data)...
....
};
return{
getOneSurvey : getOneSurvey,
}
})();
* "コードは最適化されていますか?" *このルールではなく、いいえと言います。 'handler'が呼び出されるたびに' survey。getOneSurvey() 'が呼び出され、そのたびに新しい' aws.DynamoDB.DocumentClient'が作成されます。これは、ハンドラが呼び出されるたびにではなく、コードが最初にロードされたときに、適切なスコープの変数に1回だけ割り当てられます。 –
OK!私はdocClientをmodule.exportsの外に置きました。最初に読み込まれ、1つのdocClientしか作成されません。私の考えは正しい? – Jim