我正在开发一个应用程序,我主要使用视图来获取数据.
我尝试做的是,存储文档,重定向并检查存储的文档是否可用(这是通过视图完成的,因为我不是在查找文档密钥,而是查找不同的值).
我在用什么?
Debian Wheezy上的PHP(5.4.21),Couchbase(2.1.1)和Couchbase的PHP SDK(1.1).
那么发生了什么?
我存储了一个包含API函数集($id,$document)的文档,然后使用API函数视图($designDocument,$viewName,$options)触发视图更新,其中$options至少包含’stale’ => false,然后重定向到另一个页面,我检查新添加的文档/或只是想显示它.
但新添加的文档并不总是显示或不总是通过我的检查存在.
按照我正在使用的代码更详细:
public function store(AbstractDocument $document)
{
$result = $this->bucket->storeDocument($document->getId(),
json_encode($document));
$this->afterSave();
return $result;
}
public function storeDocument($id, $document)
{
if (!is_string($document)) {
$document = json_encode($document);
}
$res = $this->couchbase->set($id, $document);
return $res;
}
public function afterSave()
{
$this->bucket->triggerViewIndexing(
$this->getDesignDocumentName(),
Config::KEY_COUCHBASE_VIEW_USER_USERLIST
);
}
public function triggerViewIndexing($designDocument, $viewName)
{
$options = ['limit' => 1, 'stale' => false];
$res = $this->couchbase->view($designDocument, $viewName, $options);
}
如代码所示,我将stale参数设置为false,以确保更新索引.
但它似乎没有奏效.
在写这个问题之前,我查看了Couchbase论坛中的一些主题,Stackoverflow上的帖子,Couchbase的PHP SDK文档以及Couchbase的一般文档.
所以我想我理解stale应该如何工作以及limitations似乎是什么.
如果我的假设陈旧有效,但只有当文件不再在内存中而是被写入磁盘(或已经有)时,是错误的,请随时纠正我.
正如我想要做的那样是不行的,我尝试了不同的东西,在一些解释和文件中也提到了应该有助于实现我想要的结果.
例如,我认为如果stale的默认行为是update_after,然后触发索引的两次更新,将解决问题.
好吧,它没有.
其他值得注意的事情是
$this->couchbase->keyDurability($id,$res);
$this->couchbase->observe($id, $res);
我将文件与套装一起存放后直接使用,单独和绝望组合使用.
也没有做到这一点.
我的假设是错误的是,PHP SDK或者某种程度上不通过stale = false参数而keyDurability没有做到它应该做的事情.当我在检查新创建的文档时传递stale = false,当然两个(触发器和检查)都在同一个存储桶和视图上工作.
或者我在做一些可怕的错误而没有注意到它.
如果有人能指出我正确的方向并希望解释出了什么问题,我会很高兴,因为我无法理解正在发生的事情.根据我的理解,everthing应该至少与keyDurability和stale一起使用.
最佳答案 有关更新视图的“问题”是,它仅使用持久保存到磁盘的数据.
你可以使用keyDurability()来检查是否发生了这种情况,但是你需要你刚才写的元素的id和cas.
我会将你的triggerViewIndexing函数更改为这样.
/**
* @param $designDocument
* @param $viewName
* @param null $id
* @param null $cas
*/
public function triggerViewIndexing($designDocument, $viewName, $id = null, $cas = null)
{
if (!empty($id) && !empty($cas)) {
$details = [
'persist_to' => 1, //The number of nodes the document should be persisted to
'timeout' => 2000, // The max time to wait for durability
'interval' => 100 //The interval between checking the state of the document
];
$this->couchbase->keyDurability($id, $cas, $details);
}
$options = ['limit' => 1, 'stale' => false];
$res = $this->couchbase->view($designDocument, $viewName, $options);
}
如果将项目写入磁盘,则每100ms检查最多2000ms.
之后,触发视图将刷新数据.