使用Redis

时间:2016-12-09 04:08:54

标签: php arrays json laravel redis

作为redis的一个业余爱好者,我可能会以完全错误的方式处理事情,人们会怀疑我为自己制造困难。话虽如此,我正在学习基础知识并试图在我认为可行的方法中取得成果。

我在MySQL中拥有一个包含4000万条记录的公平数据库。

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

使用laravel eloquent查询MySQL,循环结果并调用redis set将值存储到密钥中。

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

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

    $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返回的数组时,我的循环出现了问题,这是因为只有一个结果被传递给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 "

1 个答案:

答案 0 :(得分:0)

我不会说这是完美而理想的解决方案,但是我已经找到了一个有效的解决方案,以防将来有人遇到与我相似的情况。

    $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);

听到其他人的观点会非常有兴趣,因为我确信有一种更简单,更清洁的方法。