02:56:57 GMT I'm new to redis, trying to figure out a good way to store my data. I've got a list of classes that have a period, name, decription, etc. (a hash) but they also have an ID (a unique number in this case) and there are going to be about 100+ of them. 02:57:21 GMT I will have an API endpoint of /classes/:page which will list 25 classes for example 02:57:52 GMT *classes/?page=1,2,3,4,etc. 02:58:05 GMT and classes/:id, where it returns the session with whatever ID it has 02:58:36 GMT and then another /classes/search?q={term} which will return a list of sessions that match approximately the name 02:58:51 GMT is this a good use-case for Redis?