私はチュートリアルに従っていて、mongooseクエリを取得するcache.jsファイルを作成し、そのクエリによって返される値のキーにJSON.string化します。目標はそれをキャッシュしてからapp_js内に.cache()
を追加することです。ここでmongoose.find()
は
現在、キャッシュが空の場合は、DBからGETを実行してから、キャッシュに格納します。私は持っています
console.log("CACHE VALUE #2");
console.log(cacheValue1);
これにより、データが確実に保存され、正常に出力されます。この行は機能します。しかし、この行では、
console.log("CACHE VALUE #1");
console.log(cacheValue);
cacheValue
はnullです。
何故ですか?
一番下に値とキーが保存されるため、nullではなくデータが返されない理由がわかりません。
そう Cache Value #1
は常にnullであり、Cache Value #2
には正しいデータがあります。
コンソール出力:
GRABBING FROM DB
CLIENT CONNECTION STATUS: true
Setting CACHE to True
ABOUT TO RUN A QUERY
{"$and":[{"auctionType":{"$eq":"publicAuction"}},{"auctionEndDateTime":{"$gte":1582903244869}},{"blacklistGroup":{"$ne":"5e52cca7180a7605ac94648f"}},{"startTime":{"$lte":1582903244869}}],"collection":"listings"}
CACHE VALUE #1
null
CACHE VALUE #2
(THIS IS WHERE ALL MY DATA SHOWS UP)
const mongoose = require('mongoose');
const redis = require('redis');
const util = require('util');
var env = require("dotenv").config({ path: './.env' });
const client = redis.createClient(6380, process.env.REDISCACHEHOSTNAME + '.redis.cache.windows.net', {
auth_pass: process.env.REDISCACHEKEY,
tls: { servername: process.env.REDISCACHEHOSTNAME + '.redis.cache.windows.net' }
});
client.get = util.promisify(client.get);
const exec = mongoose.Query.prototype.exec;
mongoose.Query.prototype.cache = function () {
this.useCache = true;
console.log("Setting CACHE to True")
return this;
}
mongoose.Query
.prototype.exec = async function () {
if (!this.useCache) {
console.log("GRABBING FROM DB")
console.log("CLIENT CONNECTION STATUS: " + client.connected);
return exec.apply(this, arguments);
}
console.log("ABOUT TO RUN A QUERY")
const key = JSON.stringify(Object.assign({}, this.getQuery(), {
collection: this.mongooseCollection.name
}));
//See if we have a value for 'key' in redis
console.log(key);
const cacheValue = await client.get(key);
console.log("CACHE VALUE #1");
console.log(cacheValue);
//If we do, return that
if (cacheValue) {
console.log("cacheValue IS TRUE");
const doc = JSON.parse(cacheValue);
return Array.isArray(doc)
? doc.map(d => new this.model(d))
: new this.model(doc);
}
//Otherwise, issue the query and store the result in redis
const result = await exec.apply(this, arguments);
let redisData = JSON.stringify(result);
//stores the mongoose query result in redis
await client.set(key, JSON.stringify(redisData)), function (err) {
console.error(err);
}
const cacheValue1 = await client.get(key);
console.log("CACHE VALUE #2");
console.log(cacheValue1);
return result;
}
最小限の例でコードを再現し、希望どおりに機能させました。最初のリクエストの後で、redisキャッシュからの応答を提供します。値をログに記録し、コードにいくつかの小さな間違いを見つけただけで、それらを簡単に見つけることができます(ドキュメントでthis.modelを呼び出し、セットを修正して、redisクライアントの最後のgetを削除します)。すべてのリクエストで変数をtrueに設定し、キャッシュを使用する前にmongoとmongooseに到達するため、これが応答をキャッシュする最良の方法であるとは思いません。ミドルウェアを使用すると、これをすべて防ぐことができます。もう少しmsですが、それでも最悪の方法ではないので、ここに私の最小限の動作例を示します。
const http = require('http')
const mongoose = require('mongoose')
const redis = require('redis')
const port = 3000;
const util = require('util');
const client = redis.createClient()
client.get = util.promisify(client.get);
mongoose.connect('mongodb://localhost:27017/testdb', {useNewUrlParser: true});
const exec = mongoose.Query.prototype.exec;
var Schema = mongoose.Schema;
var testSchema = new Schema({
testfield: String, // String is shorthand for {type: String}
});
var Test = mongoose.model('Test', testSchema);
mongoose.Query.prototype.cache = function() {
this.useCache = true;
console.log("Setting CACHE to True")
return this;
}
mongoose.Query
.prototype.exec = async function () {
if (!this.useCache) {
console.log("GRABBING FROM DB")
console.log("CLIENT CONNECTION STATUS: " + client.connected);
return exec.apply(this, arguments);
}
console.log("ABOUT TO RUN A QUERY")
console.log("Query ==", this.getQuery())
console.log("Collection == ", this.mongooseCollection.name);
const key = JSON.stringify(Object.assign({}, this.getQuery(), {
collection: this.mongooseCollection.name
}));
//See if we have a value for 'key' in redis
console.log("KEY FROM QUERY AND COLLECTION",key);
const cacheValue = await client.get(key);
console.log("CACHE VALUE #1");
console.log(cacheValue);
//If we do, return that
if (cacheValue) {
console.log("cacheValue IS TRUE");
const doc = JSON.parse(cacheValue);
console.log("DOC == ",doc);
return Array.isArray(doc)
? doc.map(d => d)
: doc
// return exec( Array.isArray(doc)
// ? doc.map(d => new this.model(d))
//: new this.model(doc))
}
//Otherwise, issue the query and store the result in redis
const result = await exec.apply(this, arguments);
// console.log("EXEC === ", exec);
// console.log("result from query == ", result);
let redisData = JSON.stringify(result);
//stores the mongoose query result in redis
console.log("REDis data ===", redisData);
await client.set(key, redisData, function (err) {
console.error(err);
})
return result;
}
const server = http.createServer(function(req, res) {
if(req.url === '/'){
Test.find({}).cache().exec().then(function( docs) {
console.log("DOCS in response == ", docs);
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end(JSON.stringify(docs))
})
}
})
server.listen(port, function() {
console.log(`Server listening on port ${port}`)
})