I have a few objects which I'm storing in Redis by stringifying them and also storing as direct objects using RedisJSON. But one thing I observed is that reading the objects using JSON.GET is slower(almost 3 times slower) compared to REDIS.GET.
But obviously I need to parse the data back that are stored using REDIS.GET.
Could somebody explain why is there a huge difference in performance.