Showing
1 changed file
with
3 additions
and
0 deletions
@@ -766,6 +766,9 @@ public class ProductIdentifyServiceImpl implements ProductIdentifyService{ | @@ -766,6 +766,9 @@ public class ProductIdentifyServiceImpl implements ProductIdentifyService{ | ||
766 | RedisKeyBuilder kb = new RedisKeyBuilder().appendFixed("ufo:product:identifyResultInfo:"). | 766 | RedisKeyBuilder kb = new RedisKeyBuilder().appendFixed("ufo:product:identifyResultInfo:"). |
767 | appendVar(tagId).appendVar(":").appendVar(nfcUid); | 767 | appendVar(tagId).appendVar(":").appendVar(nfcUid); |
768 | clientCache.delete(kb.toString()); | 768 | clientCache.delete(kb.toString()); |
769 | + RedisKeyBuilder kb_new = new RedisKeyBuilder().appendFixed("ufo:product:newIdentifyResultInfo:"). | ||
770 | + appendVar(tagId).appendVar(":").appendVar(nfcUid); | ||
771 | + clientCache.delete(kb_new.toString()); | ||
769 | } | 772 | } |
770 | 773 | ||
771 | private ProductIdentifyResp getIdentifyFromCache(String tagId, String nfcUid) { | 774 | private ProductIdentifyResp getIdentifyFromCache(String tagId, String nfcUid) { |
-
Please register or login to post a comment