调整搜索更新的次序

This commit is contained in:
wlx 2013-01-23 03:00:29 +00:00
parent 012c783e1c
commit 43d1f26b1a
1 changed files with 12 additions and 10 deletions

View File

@ -1852,6 +1852,16 @@ class AuthorController extends Zend_Controller_Action
$sth->execute(array($id));
$row = $sth->fetch();
//update search document
$search=new Search();
//create search view in xunsearch
//$sql="select m.uuid,m.title,m.description,x.data,array_to_string(ARRAY( SELECT keyword.keyword FROM keyword WHERE keyword.id = m.id), ', '::text) AS keyword from normalmetadata m left join xml x on m.id=x.id where m.uuid=?";
$sql="select * from xunsearch where uuid=?";
$sth = $this->db->prepare($sql);
$sth->execute(array($row['uuid']));
$data = $sth->fetch();
$search->update($data);
if (empty($row)) //无对应记录
{
$sql="select m.id from metadata m left join mdversion v on m.uuid=v.uuid where v.id=?";
@ -2146,15 +2156,7 @@ class AuthorController extends Zend_Controller_Action
$this->jsonexit($data);
return true;
}
//update search document
$search=new Search();
//create search view in xunsearch
//$sql="select m.uuid,m.title,m.description,x.data,array_to_string(ARRAY( SELECT keyword.keyword FROM keyword WHERE keyword.id = m.id), ', '::text) AS keyword from normalmetadata m left join xml x on m.id=x.id where m.uuid=?";
$sql="select * from xunsearch where uuid=?";
$sth = $this->db->prepare($sql);
$sth->execute(array($row['uuid']));
$row = $sth->fetch();
$search->update($row);
}catch(Exception $e) {
$msg = "提交失败,请确认权限后重试";
if($this->debug>0)