tags:

views:

47

answers:

1

how to sort large data in redis?

A: 

What kind of data?

In Redis, it makes more sense to store the data in the order you want to retrieve it.

Depending on your use case you may want to look at lists or sorted sets.

djanowski