gpt4 book ai didi

php - 循环遍历 Laravel 集合并使用 Redis 存储到 key

转载 作者:可可西里 更新时间:2023-11-01 10:56:12 27 4
gpt4 key购买 nike

作为 redis 的完全业余爱好者,我可能会以完全错误的方式处理事情,有人怀疑我是在给自己找麻烦。话虽这么说,我正在学习基础知识并努力实现我认为可行的结果。

我在 MySQL 中有一个相当大的数据库,其中包含 4000 万条记录。

由于我还不知道 Redis 的全部要点以及导入方法和正确的数据结构,所以我想到了一个基本方法:

使用 laravel eloquent 查询 MySQL,遍历结果并调用 redis set 将值存储到键中。

事情是这样的,数据库是OK的邮政编码和地址,每个邮政编码包含很多个地址。

到目前为止,这是我的代码:

    $addresses = UkAddresses::where('postcode', 'N10AB')->get();
$contCount = count($addresses);

for ($x = 0; $x < $contCount; $x++) {
$postcode = $addresses[$x]['postcode'];
$redis = Redis::connection();
$redis->set('postcodes.' . $postcode, json_encode(array(
'postcode' => $postcode,
'addresses' => array(
$addresses[$x]['address']
)
)
)
);
$response = $redis->get('postcodes.'.$postcode);
$response = json_decode($response);
}

一切正常,除了它只为该邮政编码插入一个地址,如果我使用 get postcode.N10AB

,这是一个示例插入
{"postcode":"N10AB","addresses":["N10AB, Arena Enterprises UK Ltd, Flat 37, Selkirk House, Bemerton Estate, London "]}

我的猜测是在遍历从 Laravel 返回的数组时我的循环有问题,这就是为什么只有 1 个结果被传递给 Redis 的原因?

这是从 MySQL 返回的数组,我试图循环并插入到 Redis 中。

[0] 
postcode "N10AB"
address "N1 0AB, Arena Enterprises UK Ltd, Flat 37, Selkirk House, Bemerton Estate, London "

[1]
postcode "N10AB"
address "N1 0AB, Dumas Services, Flat 10, Selkirk House, Bemerton Estate, London "

最佳答案

我不会说这是完美和理想的解决方案,但我在下面找到了一个可行的解决方案,以防将来有人遇到与我类似的情况。

    $addresses = UkAddresses::where('postcode', 'N10AB')->get();
$postcode = $addresses->first()->postcode;
$items = array();
foreach($addresses as $address){
$items[] = $address['address'];
}
$redis = Redis::connection();
$redis->set('postcodes.' . $postcode, json_encode(array(
'postcode' => $postcode,
'addresses' => $items
)
)
);
$response = $redis->get('postcodes.' . $postcode);
$response = json_decode($response);
return response()->json($response);

我很想听听其他人的看法,因为我确信有一种更简单、更清晰的方法。

关于php - 循环遍历 Laravel 集合并使用 Redis 存储到 key ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41052929/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com