2020年5月21日木曜日

nodejs x redis書き込みテスト

前提:
①コンテナ間で疎通確認ができること。
②node用のredisのプラグインが入っていること。
導入してない場合は、以下の手順を行う。
npm install redis


nodejs側:
以下、index.jsファイルを作成して、redisへの書き込みテストを行う。

[sample]
------------------index.js------------------------------------
'use strict'
const redis = require('redis')
// ............
const config = {
    host: '717b10b30122',
    port: 6379
}
// ......
const client = redis.createClient(config)
// ..................
client.set('key4', 'wow55')     
// ...........................
client.get('key', (err, reply) => {
    console.log(reply)
})
// ..................
client.del('key')
// ..............................
client.get('key', (err, reply) => {
    console.log(reply)
})
// ......
client.quit()
-------------------------------------------------------------

作成したindex.jsを実行して、redisに書き込みを行う。
node index.js


redis側:
以下、確認をしてみると、書き込み出来たことが分かった

0 件のコメント:

コメントを投稿

php log(ECS ログ出力)

# PHPエラーログの設定 ENV PHP_INI_DIR /usr/local/etc/php RUN { \ echo 'log_errors = On' ; \ echo 'error_log = /proc/self/...