我必须在我的redis中存储Set as value。我无法弄清楚如何序列化它并在下面的对象中设置
$query = "INSERT INTO recharge_history (`Date`, `Time`, `Amount`, `Agent_No`, `eTransport_ID`) VALUES (NOW(), NOW(), $amount, 'WEB', $id)";
需要一些帮助
答案 0 :(得分:0)
你可以在redis中使用lpush或rpush将你的字符串推送到redis中的数组中,并使用以下方法对其进行检索。
List<String> result = cacheClient.getLRange("FRE_TRIG_WL", 0, -1);
HashSet<String> wl = new HashSet<String>(result);