node js无法在redis中获取数据

pkwftd7m  于 2021-06-09  发布在  Redis
关注(0)|答案(0)|浏览(348)

我使用spring boot将数据保存在redis中。使用以下代码:

@Cacheable(value="gsonMap",key = "#strCampCusrId")
public Map<String, Object> updateCustomerConfigInCache(String strCampCusrId, Map<String, Object> gsonMap) {
    logger.debug("Get from cache..."+strCampCusrId+" .. value : "+gsonMap);
    return gsonMap;
}

我正在成功地用java逐出数据。
但是当我试图在node中获取数据时,我可以看到它无法识别相同的键,并且显示值为null

var redis = require('redis');
    const constants = require('./Constant.js');
    var client = redis.createClient(constants.redis_port, constants.redis_host); //creates a new client
    client.on('connect', function() {  
        console.log(' redis connected');
    });
    client.GET('bayloruattesting', (err, reply) => {

      console.log(reply);
    });
module.exports = client

请帮帮我!

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题