I've a typical data stored in bit weird way (may not make much sense but its historical data stored as such):
{
1:{"text:text"},
2:{"text:text"},
3:{"text:text"},
4:{"text:text"},
5:{"text:text"}
}
Here, keys are simple numbers ranging from 0-100000. Now i want to fetch by dynamic key data like, fetch records with key ranging 2-4, something like this:
{
2:{"text:text"},
3:{"text:text"},
4:{"text:text"},
}
Any suggestions handling this kind of data with dynamic keys?