How to let PHP automatically generate thumbnails based on URLs and handle high concurrency issues

jacklove
Release: 2023-03-31 09:40:01
Original
1653 people have browsed it

The timing for the server to generate thumbnails is generally divided into two types:

1. Generate when uploading files

Advantages: The required thumbnails are already generated when uploading, and there is no need to re-judge when reading, reducing CPU operations.

Disadvantages: When the thumbnail size changes or a new size is added, all thumbnails need to be regenerated.

2. Generate when accessing

#Advantages: 1. It only needs to be generated when there is a user accessing, no access No need to generate, saving space.

2. When modifying the thumbnail size, you only need to modify the settings without regenerating all thumbnails.

Disadvantages: When thumbnails do not exist and need to be generated, high concurrent access will consume a lot of server resources.

Although there will be high concurrency problems when accessing, other advantages are better than the first method, so you only need to solve the high concurrency problems.

Regarding the principle and implementation of how to automatically generate thumbnails based on URLs, you can refer to the "php automatically generates thumbnails based on URLs" I wrote before.

High concurrency processing principle:

1. When it is judged that a picture needs to be generated, Create a temporary mark file in the tmp/ directory, name the file with md5 (the file name that needs to be generated), and delete the temporary file after the processing is completed.

2. When it is determined that the file to be generated has a temporary mark file in the tmp/ directory, which means that the file is being processed, the generate thumbnail method will not be called, but will wait until the temporary mark file is deleted, generating a successful output.

The modified files are as follows, others are the same as before.

createthumb.php

$wait_timeout){ // 超时
            exit();
        }
        usleep(300000); // sleep 300 ms
    }
    if(file_exists($dest)){ // 图片生成成功
        ob_clean();
        header('content-type:'.mime_content_type($dest));
        exit(file_get_contents($dest));
    }else{
        exit(); // 生成失败退出
    }
}
// 创建缩略图
$obj = new PicThumb($logfile);
$obj->set_config($config);
$create_flag = $obj->create_thumb($source, $dest);
unlink($processing_flag); // 删除处理中标记文件
if($create_flag){ // 判断是否生成成功
    ob_clean();
    header('content-type:'.mime_content_type($dest));
    exit(file_get_contents($dest));
}
?>
Copy after login

This article explains how to let PHP automatically generate thumbnails based on URLs and handle high concurrency Question, please pay attention to php Chinese website for more related questions.

Related recommendations:

About comparison between php string compression methods

About php Timer page running time monitoring Related introduction to classes

#Introduction to the methods of php constructor supporting different numbers of parameters

The above is the detailed content of How to let PHP automatically generate thumbnails based on URLs and handle high concurrency issues. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!