Open1
逆引き: Firebase/Functions
Firebase/Functions の速度比較実験 (適当)
リージョン | メモリ | レスポンスタイム(最速値)[1] |
---|---|---|
us-central1 | 256 MB | 235 ms |
asia-northeast1 | 256 MB | 40 ms |
asia-northeast1 | 2 GB | 38 ms |
実験時のコード
export const addMessage = functions.region(config.REGION).runWith(config.RUNTIME_OPTIONS).https.onRequest(async (req, res) => {
// Grab the text parameter.
const original = req.query.text;
// Send back a message
res.json({ result: `Message with: ${original}` });
});
メモリを増やせば CPU 速度が増す (料金も増す)
-
確認回数は10回前後(雑) ↩︎