「Gcp/Firebase/Firestore/cacheモジュール」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→functionsのサンプル) |
|||
行16: | 行16: | ||
.https.onRequest((request, response) => { | .https.onRequest((request, response) => { | ||
var id = request.query['id']; | var id = request.query['id']; | ||
− | var | + | var cachedata = request.query['cachedata']; |
const cache = require('./cache.js'); | const cache = require('./cache.js'); | ||
cache.registerCallback(onCacheResponse); | cache.registerCallback(onCacheResponse); | ||
− | cache.setCache(admin, | + | cache.setCache(admin, cachedata, id); |
− | function onCacheResponse( | + | function onCacheResponse(cachedata) { |
− | response.send(" | + | response.send("cachedata=" + cachedata); |
} | } | ||
}); | }); | ||
行29: | 行29: | ||
.https.onRequest((request, response) => { | .https.onRequest((request, response) => { | ||
var id = request.query['id']; | var id = request.query['id']; | ||
− | var | + | var cachedata = request.query['cachedata']; |
var cachelifesec = 0; | var cachelifesec = 0; | ||
if (request.query['cachelifesec'] != null) { | if (request.query['cachelifesec'] != null) { | ||
行38: | 行38: | ||
console.log('cachelifesec=' + cachelifesec); | console.log('cachelifesec=' + cachelifesec); | ||
cache.getCache(admin, id, cachelifesec); | cache.getCache(admin, id, cachelifesec); | ||
− | function onCacheResponse( | + | function onCacheResponse(cachedata) { |
− | response.send(" | + | response.send("cachedata=" + cachedata); |
} | } | ||
}); | }); | ||
行50: | 行50: | ||
const cache = require('./cache.js'); | const cache = require('./cache.js'); | ||
cache.registerCallback(onCacheResponse); | cache.registerCallback(onCacheResponse); | ||
− | cache.setCache(admin, | + | cache.setCache(admin, cachedata, id); |
− | function onCacheResponse( | + | function onCacheResponse(cachedata) { |
− | response.send(" | + | response.send("cachedata=" + cachedata); |
} | } | ||
Cache取得例 | Cache取得例 | ||
行59: | 行59: | ||
console.log('cachelifesec=' + cachelifesec); | console.log('cachelifesec=' + cachelifesec); | ||
cache.getCache(admin, id, cachelifesec); | cache.getCache(admin, id, cachelifesec); | ||
− | function onCacheResponse( | + | function onCacheResponse(cachedata) { |
− | response.send(" | + | response.send("cachedata=" + cachedata); |
} | } | ||
*/ | */ | ||
行114: | 行114: | ||
10秒でcacheが切れるサンプルurl | 10秒でcacheが切れるサンプルurl | ||
// cache設定 | // cache設定 | ||
− | ttps://asia-northeast1-ほげほげ.cloudfunctions.net/setCache?id=hogeid& | + | ttps://asia-northeast1-ほげほげ.cloudfunctions.net/setCache?id=hogeid&cachedata=dada1 |
// cache取得 | // cache取得 | ||
ttps://asia-northeast1-ほげほげ.cloudfunctions.net/getCache?id=hogeid&cachelifesec=10 | ttps://asia-northeast1-ほげほげ.cloudfunctions.net/getCache?id=hogeid&cachelifesec=10 | ||
cacheはid別にfirestoreに格納される。 | cacheはid別にfirestoreに格納される。 |
2019年8月10日 (土) 17:56時点における版
functionsのサンプル
- id別にfirestoreのcahesコレクションへ文字列をキャッシュする
- cache保持時間を設定できるように
cachesのテーブル構成例
id string | data string | unixtime int "hogeid" | "hoge" | 123423451
functions/index.js
const functions = require('firebase-functions'); const admin = require('firebase-admin'); admin.initializeApp(); exports.setCache = functions .region('asia-northeast1') .https.onRequest((request, response) => { var id = request.query['id']; var cachedata = request.query['cachedata']; const cache = require('./cache.js'); cache.registerCallback(onCacheResponse); cache.setCache(admin, cachedata, id); function onCacheResponse(cachedata) { response.send("cachedata=" + cachedata); } }); exports.getCache = functions .region('asia-northeast1') .https.onRequest((request, response) => { var id = request.query['id']; var cachedata = request.query['cachedata']; var cachelifesec = 0; if (request.query['cachelifesec'] != null) { cachelifesec = parseInt(request.query['cachelifesec']); } const cache = require('./cache.js'); cache.registerCallback(onCacheResponse); console.log('cachelifesec=' + cachelifesec); cache.getCache(admin, id, cachelifesec); function onCacheResponse(cachedata) { response.send("cachedata=" + cachedata); } });
functions/cache.js
/* Cache設定例 const cache = require('./cache.js'); cache.registerCallback(onCacheResponse); cache.setCache(admin, cachedata, id); function onCacheResponse(cachedata) { response.send("cachedata=" + cachedata); } Cache取得例 const cache = require('./cache.js'); cache.registerCallback(onCacheResponse); console.log('cachelifesec=' + cachelifesec); cache.getCache(admin, id, cachelifesec); function onCacheResponse(cachedata) { response.send("cachedata=" + cachedata); } */ var mCallback; exports.registerCallback = function(callback) { mCallback = callback; } exports.setCache = function(admin, data, id) { var date = new Date() ; var unixtimems = date.getTime() ; var unixtime = Math.floor( unixtimems / 1000 ) ; console.log('unixtime=' + unixtime); const cache = { id: id, data: data, unixtime: unixtime, }; admin.firestore().collection('caches') .doc(id).set(cache) .then((snapshot) => { mCallback(data); }); } exports.getCache = function(admin, id, cachelifesec) { var date = new Date() ; var unixtimems = date.getTime() ; var unixtime = Math.floor( unixtimems / 1000 ) ; console.log('unixtime=' + unixtime); var unixtimecachelifesec = unixtime - cachelifesec; console.log('cachelifesec=' + cachelifesec); console.log('unixtimecachelifesec=' +unixtimecachelifesec); admin.firestore().collection('caches') .where('id', '==', id) .where('unixtime', '>', unixtimecachelifesec) .limit(1) .get() .then((snapshot) => { var caches = snapshot.docs.map(x => x.data()); for (let i = 0; i < caches.length; i++) { console.log("ret data=" + caches[i].data); mCallback(caches[i].data); return; } mCallback(""); }); }
httpアクセスで確認
10秒でcacheが切れるサンプルurl
// cache設定 ttps://asia-northeast1-ほげほげ.cloudfunctions.net/setCache?id=hogeid&cachedata=dada1 // cache取得 ttps://asia-northeast1-ほげほげ.cloudfunctions.net/getCache?id=hogeid&cachelifesec=10
cacheはid別にfirestoreに格納される。