我有两个表,table1
并且table2
通过多对多连接。到目前为止没有问题,但我会因为在生产使用中使用下面的代码而导致服务器崩溃。访问多对多连接会产生很多查询。
有没有更好的方法来访问数据(没有原始查询)?
代码:
<?php
$table1_entry = R::findAll('table1');
foreach($table1_entry as $table1)
{
echo $table1->id;
foreach($table1->sharedTable2 as $table2)
{
echo $table2->id;
}
}
?>
Redbean 查询日志:
string(34) "SELECT * FROM `table1` -- keep-cache"
[1] =>
string(71) "SELECT * FROM `table2_table1` WHERE ( `table1_id` IN ( ?) ) -- keep-cache"
[2] =>
string(61) "SELECT * FROM `table2` WHERE ( `id` IN ( 1) ) -- keep-cache"
[3] =>
string(71) "SELECT * FROM `table2_table1` WHERE ( `table1_id` IN ( ?) ) -- keep-cache"
[4] =>
string(61) "SELECT * FROM `table2` WHERE ( `id` IN ( 2) ) -- keep-cache"
[5] =>
string(71) "SELECT * FROM `table2_table1` WHERE ( `table1_id` IN ( ?) ) -- keep-cache"
[6] =>
string(61) "SELECT * FROM `table2` WHERE ( `id` IN ( 3) ) -- keep-cache"
[7] =>
string(71) "SELECT * FROM `table2_table1` WHERE ( `table1_id` IN ( ?) ) -- keep-cache"
[8] =>
string(61) "SELECT * FROM `table2` WHERE ( `id` IN ( 4) ) -- keep-cache"
[...]