...
|
...
|
@@ -812,7 +812,10 @@ public class ProductIdentifyServiceImpl implements ProductIdentifyService{ |
|
|
}
|
|
|
|
|
|
private void clearIdentifyCache(String tagId, String nfcUid) {
|
|
|
RedisKeyBuilder kb = new RedisKeyBuilder().appendFixed("ufo:product:identifyResultInfo:").
|
|
|
RedisKeyBuilder infoKb = new RedisKeyBuilder().appendFixed("ufo:product:identifyResultInfo:").
|
|
|
appendVar(tagId).appendVar(":").appendVar(nfcUid);
|
|
|
clientCache.delete(infoKb.toString());
|
|
|
RedisKeyBuilder kb = new RedisKeyBuilder().appendFixed("ufo:product:identifyRecord:").
|
|
|
appendVar(tagId).appendVar(":").appendVar(nfcUid);
|
|
|
clientCache.delete(kb.toString());
|
|
|
}
|
...
|
...
|
|