- Joined
- Sep 19, 2023
- Messages
- 1
- Reaction score
- 0
I want to cache several million objects (with an ID, timestamp and some other properties). Then I want to query every few seconds all objects where the ID = abc and the timestamp >= 123. Which caching system would you recommend for this? Redis doesnt work, because you can't search the hashes by field values with it
example object
{
id: "idabc",
timestamp: 165485458435,
detailThingy: 123
}
example object
{
id: "idabc",
timestamp: 165485458435,
detailThingy: 123
}