akkadotnet / Akka.Persistence.Redis

Redis storage for Akka.NET Persistence

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

redis zrevrangebyscore

sadeghhp opened this issue · comments

akka.persistence.redis

"zrevrangebyscore" command is now deprecated. it can make some issues in production with massive requests

please check this link:
redis/redis#6680

It can be replaced by ZRANGE with the REV and BYSCORE arguments when migrating or writing new code.

Is there anyway to safely migrate from one to another @sadeghhp ? I'm not experienced enough with Redis to know offhand