用于Value的Serializer,它在redis中保存Set <string>

时间:2017-11-20 05:48:07

标签: java serialization redis set

我必须在我的redis中存储Set as value。我无法弄清楚如何序列化它并在下面的对象中设置

$query = "INSERT INTO recharge_history (`Date`, `Time`, `Amount`, `Agent_No`, `eTransport_ID`) VALUES (NOW(), NOW(), $amount, 'WEB', $id)";

需要一些帮助

1 个答案:

答案 0 :(得分:0)

你可以在redis中使用lpush或rpush将你的字符串推送到redis中的数组中,并使用以下方法对其进行检索。

List<String> result = cacheClient.getLRange("FRE_TRIG_WL", 0, -1);
HashSet<String> wl = new HashSet<String>(result);