You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 5, 2022. It is now read-only.
Investigate possibility of directly serializing to a Map (instead of a Set<ZSetOperations.TypedTuple<String>>) in RedisFieldValueCounterRepository.getZSetData(String counterKey)
protectedMap<String, Double> getZSetData(StringcounterKey) {
// TODO directly serialize into a Map vs Set of TypedTuples to avoid extra copySet<ZSetOperations.TypedTuple<String>> rangeWithScore = this.redisTemplate
.boundZSetOps(counterKey).rangeWithScores(0, -1);