gamenet / redis-memory-analyzer

Redis memory profiler to find the RAM bottlenecks throw scaning key space in real time and aggregate RAM usage statistic by patterns.
MIT License
772 stars 80 forks source link

Use time.perf_counter instead of deprecated time.clock for Python 3 compatibility #51

Closed tirkarthi closed 4 years ago

tirkarthi commented 4 years ago

Use time.perf_counter instead of deprecated time.clock for Python 3.8 compatibility.

Fixes #50

Thanks for the library!