cdn icon indicating copy to clipboard operation
cdn copied to clipboard

bae获取object之后要取body。。

Open Yangff opened this issue 10 years ago • 0 comments

文件: /include/storages/Bae.php

    //这里是效率瓶颈啊!!
    public function read($filename){
        return $this->instance->get_object($this->domain,$this->get_file($filename));
    }

应该为:

    //这里是效率瓶颈啊!!
    public function read($filename){
        return $this->instance->get_object($this->domain,$this->get_file($filename))->body;
    }

Yangff avatar Aug 30 '13 09:08 Yangff