まず最初に、私は Hapi を初めて使用するので、難しく判断しないでください。
このチュートリアルに従ってcatbox
、パッケージを使用して Redis に基づいてサーバー側のキャッシュを設定しようとしていますcatbox-redis
npm
が、次のエラーが表示されます。
{
reason: Error: Connection is closed.
at Redis.connectionCloseHandler (/home/yuriy/dev/sources/all/hapi-getting-started/node_modules/ioredis/built/redis/index.js:305:24)
at Object.onceWrapper (events.js:300:26)
at Redis.emit (events.js:210:5)
at processTicksAndRejections (internal/process/task_queues.js:75:11)
}
ioredis
ご覧のとおり、の依存関係である (package-lock.json によると v4.14.1) パッケージにエラーがあることがわかりますcatbox-redis
。
Redis サーバーをローカルで実行しています。
username@my-computer:~$ redis-cli -v
redis-cli 4.0.9
username@my-computer:~$ redis-cli
127.0.0.1:6379> ping
PONG
これが私のものpackage.json
です:
{
"name": "hapi-getting-started",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"build": "rimraf dist && tsc",
"start": "rimraf dist && tsc && node dist/index.js",
"dev": "tsc -w | nodemon dist/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/catbox": "^10.2.3",
"@hapi/catbox-redis": "^5.0.5",
"@hapi/hapi": "^18.4.0",
"rimraf": "^3.0.0",
"typescript": "^3.7.2"
},
"devDependencies": {
"@types/hapi__catbox": "^10.2.2",
"@types/hapi__catbox-redis": "^5.0.0",
"@types/hapi__hapi": "^18.2.6",
"@types/node": "^12.12.14",
"nodemon": "^2.0.1"
}
}
そして、ここに私のものがありますsrc/index.ts
:
const Hapi = require('@hapi/hapi');
const CatboxRedis = require('@hapi/catbox-redis');
console.log(`Running environment ${process.env.NODE_ENV || 'dev'}`);
// Catch uncaught exceptions
process.on('uncaughtException', (error: Error) => {
console.error(`uncaughtException ${error.message}`);
console.error({ reason });
});
// Catch unhandled rejected promises
process.on('unhandledRejection', (reason: any) => {
console.error(`unhandledRejection ${reason}`);
console.error({ error });
});
const init = async () => {
const server = Hapi.server({
host: 'localhost',
port: 8000,
cache: {
name: 'redis-cache',
provider: {
constructor: CatboxRedis,
options: {
partition: 'my_cached_data',
tls: {},
},
},
},
});
await server.start();
console.log('Server running on %s', server.info.uri);
};
init();
私が間違っていることはありますか?私はこの問題に多くの時間を費やしてきたので、どんな助けでも大歓迎です。