- 论坛徽章:
- 0
|
本帖最后由 newjueqi 于 2014-07-16 11:08 编辑
fish大大,我们用php客户端来实现文件的上传。
php,tracker,storger都是部署在同一台机器,上传同样的文件(200KB),有时用时达到10秒,这是为啥啊?
下面是上传的源码:- <?php
- public function execute() {
- $r ['Result'] = 0;
- $r ['Msg'] = "upload error";
- date_default_timezone_set("Asia/Chongqing");
-
- try{
- $this->startTime = microtime(true);
- $tracker = fastdfs_tracker_get_connection ();
- if (! fastdfs_active_test ( $tracker )) {
- fastdfs_tracker_close_all_connections();
- return;
- }
- $storage = fastdfs_tracker_query_storage_store ();
- if (! $storage) {
- fastdfs_tracker_close_all_connections();
- return;
- }
-
- $path_parts = pathinfo ( $_SERVER ['HTTP_FILE_NAME'] );
- if ($path_parts && isset ( $path_parts ['extension'] )) {
-
- $extName = $path_parts ['extension'];
- } else {
- $extName = "";
- }
- $result = fastdfs_storage_upload_by_filebuff ( file_get_contents ( 'php://input' ), $extName, array (), null, $tracker, $storage );
- $this->stopTime= microtime(true);
-
- if (is_array ( $result )) {
- $r ['Result'] = 1;
- $r ['Msg'] = $result ['group_name'] . "/" . $result ['filename'];
- }else{
- $r ['Result'] = 0;
- $r ['Msg'] ="fastdfs_storage_upload_by_filebuff1 fail, errno: " . fastdfs_get_last_error_no() . ", error info: " . fastdfs_get_last_error_info() . "\n";
- }
- } catch (Exception $e) {
- $r ['Result'] = 0;
- $r ['Msg'] =$e->getMessage(); ;
- }
-
- //计算上传用时
- $spendTime= round(($this->stopTime- $this->startTime) , 4);
-
- fastdfs_tracker_close_all_connections();
- }
复制代码 |
|