|
|
|
|
|
by justinsb
4265 days ago
|
|
If you're iterating over the entire dataset regularly though, you should _definitely_ use a relational database over Redis, because a relational database lets you push processing onto the server. With redis you'll have to fetch every row over the network; with a SQL database you'll typically only retrieve the final summary data. The OP has 40GB of data, so to query that even once per minute with Redis would effectively max out 10Gb ethernet. Of course, the real win is that something that would be a table scan in Redis could be a indexed query in SQL. Doing a table scan over 40GB of data is always going to be painful. |
|
Redis supports filter features native, so it basically works as every remote service.