Zen Cart を導入して様子を見てたのですが表示速度が遅くなってきました
流石に、32万件ほどのデータを登録すると表示が激遅いです 
どうすれば表示が高速化出来ると悩んでいると以下のサイトを知りました
参考サイト
ZenCartの高速化
Zen Cart バージョン
Zen Cart 1.3.0.2 だと大丈夫だと思います
参考サイトを確認し、改造する事にしました

改造方法
/includes/modules/ の以下のファイルを修正します。
column_single.php
column_right.php
column_left.php

①.column_single.php の改造
修正前
$column_single_display= $db->Execute(“select layout_box_name from ” . TABLE_LAYOUT_BOXES . ” where (layout_box_location=0 or layout_box_location=1) and layout_box_status_single=1 and layout_template ='” . $template_dir . “‘” . ‘ order by LPAD(layout_box_sort_order_single,11,”0″)’);
修正後
$column_single_display= $db->Execute(“select layout_box_name from ” . TABLE_LAYOUT_BOXES . ” where (layout_box_location=0 or layout_box_location=1) and layout_box_status_single=1 and layout_template ='” . $template_dir . “‘” . ‘ order by LPAD(layout_box_sort_order_single,11,”0″)’, ”, true, 7200);
※., ”, true, 7200 を追加しています。
②.column_right.php の改造
修正前
$column_right_display= $db->Execute(“select layout_box_name from ” . TABLE_LAYOUT_BOXES . ” where layout_box_location=1 and layout_box_status=1 and layout_template ='” . $template_dir . “‘” . ‘ order by layout_box_sort_order’);
修正後
$column_right_display= $db->Execute(“select layout_box_name from ” . TABLE_LAYOUT_BOXES . ” where layout_box_location=1 and layout_box_status=1 and layout_template ='” . $template_dir . “‘” . ‘ order by layout_box_sort_order’, ”, true, 7200);
※., ”, true, 7200 を追加しています。
③.column_left.php の改造
修正前
$column_left_display= $db->Execute(“select layout_box_name from ” . TABLE_LAYOUT_BOXES . ” where layout_box_location = 0 and layout_box_status= ‘1’ and layout_template ='” . $template_dir . “‘” . ‘ order by layout_box_sort_order’);
修正後
$column_left_display= $db->Execute(“select layout_box_name from ” . TABLE_LAYOUT_BOXES . ” where layout_box_location = 0 and layout_box_status= ‘1’ and layout_template ='” . $template_dir . “‘” . ‘ order by layout_box_sort_order’, ”, true, 7200);
※., ”, true, 7200 を追加しています。

筆者の環境では若干ですが表示が速くなりました