MySQL到Redis - 导入和模型

Cri*_*rta 6 mysql nosql redis key-value-store

我正在考虑使用Redis来缓存一些用户数据快照,以加快对该数据的访问(其中一个原因是因为我的MySQL表遭受锁争用)而且我正在寻找一步导入这样一个表的最佳方法(可能包含几条记录到数百万条记录):

mysql> select * from mytable where snapshot = 1133;
+------+--------------------------+----------------+-------------------+-----------+-----------+
| id   | email                    | name           | surname           | operation | snapshot  |
+------+--------------------------+----------------+-------------------+-----------+-----------+
| 2989 | example-2989@example.com | fake-name-2989 | fake-surname-2989 |         2 |      1133 |
| 2990 | example-2990@example.com | fake-name-2990 | fake-surname-2990 |        10 |      1133 |
| 2992 | example-2992@example.com | fake-name-2992 | fake-surname-2992 |         5 |      1133 |
| 2993 | example-2993@example.com | fake-name-2993 | fake-surname-2993 |         5 |      1133 |
| 2994 | example-2994@example.com | fake-name-2994 | fake-surname-2994 |         9 |      1133 |
| 2995 | example-2995@example.com | fake-name-2995 | fake-surname-2995 |         7 |      1133 |
| 2996 | example-2996@example.com | fake-name-2996 | fake-surname-2996 |         1 |      1133 |
+------+--------------------------+----------------+-------------------+-----------+-----------+
Run Code Online (Sandbox Code Playgroud)

进入Redis键值存储区.

我可以有很多"快照"加载到Redis中,基本的访问模式是(SQL语法)

  • select * from mytable where snapshot = ? and id = ?

这些快照也可以来自其他表,因此" 每个快照的全局唯一ID "是列snapshot,例如:

mysql> select * from my_other_table where snapshot = 1134;
+------+--------------------------+----------------+-------------------+-----------+-----------+
| id   | email                    | name           | surname           | operation | snapshot  |
+------+--------------------------+----------------+-------------------+-----------+-----------+
| 2989 | example-2989@example.com | fake-name-2989 | fake-surname-2989 |         1 |      1134 |
| 2990 | example-2990@example.com | fake-name-2990 | fake-surname-2990 |         8 |      1134 |
| 2552 | example-2552@example.com | fake-name-2552 | fake-surname-2552 |         5 |      1134 |
+------+--------------------------+----------------+-------------------+-----------+-----------+
Run Code Online (Sandbox Code Playgroud)

加载到redis的快照永远不会改变,它们只能通过TTL一周使用

  • 有一种方法可以将这种数据(行和列)一步加载到redis组合中redis-cli --pipe并且HMSET

  • 在redis中使用哪种最佳模型来存储/获取此数据(以访问模式思考)?

我已经找到了redis-cli --pipe Redis Mass Insertion(还有一步到MySQL的Redis),但是我无法找到实现我的要求的最佳方法(从一步到所有行/列的mysql加载,最好的redis模型)HMSET

提前致谢

克里斯蒂安.

FGR*_*eau 5

模型

为了能够从Redis查询数据,方法与以下方法相同:

select * from mytable where snapshot = ?
select * from mytable where id = ?
Run Code Online (Sandbox Code Playgroud)

您将需要以下模型。

注意:select * from mytable where snapshot = ? and id = ?此处与没什么关系,在这里没有多大意义select * from mytable where id = ?

密钥类型和命名

[Key Type] [Key name pattern]
HASH       d:{id}
ZSET       d:ByInsertionDate
SET        d:BySnapshot:{id}
Run Code Online (Sandbox Code Playgroud)

注意:我用作d:命名空间,但您可能需要使用域模型的名称对其进行重命名。

数据插入

将来自Mysql的新行插入Redis:

hmset d:2989 id 2989 email example-2989@example.com name fake-name-2989 ... snapshot 1134
zadd d:ByInsertionDate {current_timestamp} d:2989
sadd d:BySnapshot:1134 d:2989
Run Code Online (Sandbox Code Playgroud)

另一个例子:

hmset d:2990 id 2990 email example-2990@example.com name fake-name-2990 ... snapshot 1134
zadd d:ByInsertionDate {current_timestamp} d:2990
sadd d:BySnapshot:1134 d:2990
Run Code Online (Sandbox Code Playgroud)

克朗

根据您的要求,以下是每天或每周必须运行的算法:

for key_name in redis(ZREVRANGEBYSCORE d:ByInsertionDate -inf {timestamp_one_week_ago})

 // retrieve the snapshot id from d:{id}
 val snapshot_id = redis(hget {key_name} snapshot)

 // remove the hash (d:{id})
 redis(del key_name)

 // remove the hash entry from the set
 redis(srem d:BySnapshot:{snapshot_id} {key_name})

// clean the zset from expired keys
redis(zremrangebyscore d:ByInsertionDate -inf {timestamp_one_week_ago})
Run Code Online (Sandbox Code Playgroud)

用法

select * from my_other_table where snapshot = 1134; 将是:

{snapshot_id} = 1134
for key_name in redis(smembers d:BySnapshot:{snapshot_id})
  print(redis(hgetall {keyname}))
Run Code Online (Sandbox Code Playgroud)

或编写lua脚本直接在redis端执行此操作。最后:

select * from my_other_table where id = 2989; 将会:

{id} = 2989
print(redis(hgetall d:{id}))
Run Code Online (Sandbox Code Playgroud)

进口

这部分非常简单,只需阅读表格并遵循上述模型即可。根据您的要求,您可能希望以每小时/每天/每周的cron导入所有(或部分)数据。