注释补充
This commit is contained in:
parent
dbe0821ecf
commit
5ee25262aa
@ -104,6 +104,7 @@ public class EsGoodsSearchServiceImpl implements EsGoodsSearchService {
|
|||||||
@Override
|
@Override
|
||||||
public List<String> getHotWords(Integer count) {
|
public List<String> getHotWords(Integer count) {
|
||||||
List<String> hotWords = new ArrayList<>();
|
List<String> hotWords = new ArrayList<>();
|
||||||
|
// redis 排序中,下标从0开始,所以这里需要 -1 处理
|
||||||
count = count - 1;
|
count = count - 1;
|
||||||
Set<DefaultTypedTuple> set = cache.reverseRangeWithScores(CachePrefix.HOT_WORD.getPrefix(), count);
|
Set<DefaultTypedTuple> set = cache.reverseRangeWithScores(CachePrefix.HOT_WORD.getPrefix(), count);
|
||||||
if (set.isEmpty() || set == null) {
|
if (set.isEmpty() || set == null) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user