批量写入redis

Posted lavin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了批量写入redis相关的知识,希望对你有一定的参考价值。

批量写入redis

 

        key := GetSeriesKey(series.Id)
        idNames = append(idNames, key, series.Name)
        if k%10 == 9 {
            err = Mset(idNames...)
            if err != nil {
                LLoger.RunLog.Info("set data to redis err : ", err)
            } else {
                idNames = []interface{}{}
            }
        }

 

以上是关于批量写入redis的主要内容,如果未能解决你的问题,请参考以下文章

批量写入redis

redischannel写入失败

Hbase 客户端批量写入数据

数据写入redis并返回怎么处理

如何高效地向Redis写入大量的数据

如何高效地向Redis写入大量的数据