这是我的计划功能的一部分:
case is_html(Headers) of
{true,_} ->
UTFBody=convert_to_utf8(Headers,RawBody),
ParsedBody=mochiweb_html:parse(UTFBody),
Desc=get_head(search_tag(ParsedBody,?DESC)),
Title=get_head(search_tag(ParsedBody,?TITLE)),
SiteName=get_head(search_tag(ParsedBody,?SITENAME)),
CONURL=get_head(search_tag(ParsedBody,?URL)),
Author=get_head(search_tag(ParsedBody,?AUTHOR)),
Image=get_head(search_tag(ParsedBody,?IMAGE)),
{Desc,Title,SiteName,CONURL,Author,Image};
{false,Ext} ->
.........
所有语句都是独立的,如何修改程序,使程序行并行执行,并减少执行时间。
任何帮助都很明显。
编辑:
get_head/1
返回head
的{{1}}。
list
有一个search_tag/2
实施。