I'm not sure what category to put this under, but I'm using Laravel and Redis and just wanted an opinion.
I created a blog in Laravel, and I was just wondering - should I store my paginated results in Redis?
The server is not a problem, I have plenty of memory to use...but I'm not great when it comes to Redis and think maybe I'm using it wrong.
Lets say all my posts had 50,000 characters and I was storing 25 posts per page, so I stored all the results with "blog_posts_page_".
That's a pretty big dataset, no? It makes me feel like I'd be abusing Redis and causing problems that I don't really see.
I'm just looking for opinions really, I have 500 "dummy" posts with 10,000 - 50,000 characters in each.
This is purely educational. I'm trying to learn!
Thanks :)