gpt4 book ai didi

php - 在 PDO MySQL 中读取 MEDIUMBLOB 时,工作大约 1 MB max_allowed_pa​​cket

转载 作者:行者123 更新时间:2023-11-29 22:31:20 26 4
gpt4 key购买 nike

我正在使用 PDO 检索 MySQL 数据库中表的 MEDIUMBLOB 列中的 5 MB 值。 MEDIUMBLOB 最多可以存储 16 MB,但 PDO 由于 max_allowed_pa​​cket 将其截断为 1 MB。我尝试了 Large Objects 中提到的 bindColumn ,但 PDO 的 MySQL 驱动程序生成一个字符串,而不是一个流( bug 40913 ,报告为“仍然存在于 PHP-5.6.5 中”)。实际上,它将 PDO::PARAM_LOB 视为 PDO::PARAM_STR 的同义词。回复BLOB Download Truncated at 1 MB...建议增加服务器上 my.cnf 中的 max_allowed_pa​​cket 变量,但我无权更改 my.cnf,这可能会影响其他用户服务器的。我知道可以解决这个问题,因为 phpMyAdmin 可以从同一服务器下载如此大的 BLOB

该表的定义如下:

CREATE TABLE IF NOT EXISTS cache_items (
`cache_id` INTEGER UNSIGNED PRIMARY KEY AUTO_INCREMENT,
`name` VARBINARY(63),
`value` MEDIUMBLOB NOT NULL,
`created` TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
`expires` DATETIME NOT NULL,
UNIQUE (`name`),
INDEX (`expires`)
) ENGINE=INNODB;

PHP 代码:

<?php
require_once("dbsettings.php");
$db = new PDO($pdo_dsn, $pdo_username, $pdo_password, $pdo_options);
$name = 'hello';
$read_stmt = $db->prepare("
SELECT `value` FROM `cache_items`
WHERE `name` = :n AND `expires` > CURRENT_TIMESTAMP
ORDER BY `cache_id` DESC LIMIT 1
");
$read_stmt->execute([':n' => $name]);
$read_stmt->bindColumn(1, $value_fp, PDO::PARAM_LOB);
$ok = $read_stmt->fetch(PDO::FETCH_BOUND);
echo gettype($bodyfp); // string, not resource, because of bug 40913
echo strlen($bodyfp); // 1048576, not 5xxxxxx, because of max_allowed_packet

那么程序应该如何检索大的BLOB?或者,将每个存储在目录中的文件中,然后执行定期任务,从目录中删除与cache_items<中未过期条目不对应的任何文件会更实用吗?/

最佳答案

我通过创建一个循环来解决这个问题,该循环使用 MySQL 的 SUBSTRING 函数来读取循环中较小的值 block ,其中每个 block 都小于一个数据包。

<?php
// [connection setup omitted]
$stat_stmt = $db->prepare("
SELECT `cache_id`, LENGTH(`value`) FROM `cache_items`
WHERE `name` = :n AND `expires` > CURRENT_TIMESTAMP
ORDER BY `cache_id` DESC LIMIT 1
");
$read_stmt = $db->prepare("
SELECT SUBSTRING(`value` FROM :start + 1 FOR 250000)
FROM `cache_items`
WHERE `cache_id` = :id
");

// Find the ID and length of the cache entry
$stat_stmt->execute($stat_stmt, [':n'=>$name]);
$files = $stat_stmt->fetchAll(PDO::FETCH_NUM);
if (!$files) {
exit;
}
list($cache_id, $length) = $files[0];

// Read in a loop to work around servers with small MySQL max_allowed_packet
// as well as the fact that PDO::PARAM_LOB on MySQL produces a string instead
// of a stream
// https://bugs.php.net/bug.php?id=40913
$length_so_far = 0;
$body = [];
while ($length_so_far < $length) {
$read_stmt->execute([':id'=>$cache_id, ':start'=>$length_so_far]);
$piece = $read_stmt->fetchAll(PDO::FETCH_COLUMN, 0);
if (!$piece) {
exit;
}
$piece = $piece[0];
if (strlen($piece) < 1) {
exit;
}
$length_so_far += strlen($piece);
$body[] = $piece;
}
echo implode('', $body);

关于php - 在 PDO MySQL 中读取 MEDIUMBLOB 时,工作大约 1 MB max_allowed_pa​​cket,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29753499/

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