我想存储和" SELECT"使用Predis的Redis数组,我输入的数据如下:
$redis->hset("account_id_".$account_id, "access_time", time());
所以我把这个结构存储在redis
中db0
account_id_1
access_time: 1400901850
...
other values
account_id_2
access_time: 1400901862
...
other values
...
other_accounts
我想选择一系列unix时间戳中的所有帐户,但到目前为止我还没找到方法,如果数据结构对于此目的是正确的,我有疑问。
答案 0 :(得分:2)
我怀疑数据结构是否正确用于此目的。
您可以使用散列来存储帐户数据,但如果您想要在access_time
字段上进行O(N)查找,则需要使用其他数据结构。也就是说,您应该使用有序集。
您的数据库中应该有一个名为account:access_time
的类型为有序集的附加键。访问帐户时,应运行以下redis命令(当然填写适当的变量):
ZADD account:access_time $access_time $account_id
稍后当您想根据访问时间进行查找时,请运行以下命令:
ZRANGEBYSCORE account:access_time $min_access_time $max_access_time
上面的命令将返回一个帐户ID列表,然后您可以进行处理。