我正在开发一个应用程序,我主要使用视图来获取数据 我尝试做的是,存储文档,重定向并检查存储的文档是否可用(这是通过视图完成的,因为我不是在查找文档密钥,而是查找不同的值)。
我在用什么?
在Debian Wheezy上使用PHP(5.4.21),Couchbase(2.1.1)和Couchbase的PHP SDK(1.1)。那发生了什么?
我使用API函数set($id, $document)
存储文档,然后使用API函数view($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);
我在使用set
存储文档后直接使用了这些文件,并将其与绝望组合在一起。
也没有做到这一点。
我的假设是错误的是,PHP SDK要么以某种方式不通过stale=false
参数而且keyDurability没有做到它应该做的事情。当我在检查新创建的文档时传递stale=false
,当然两个(触发和检查)在同一个存储桶和视图上工作。
或者我在做一些可怕的错误而没有注意到它。
如果有人能指出我正确的方向并希望解释出现了什么问题,我会很高兴,因为我无法理解正在发生的事情。根据我的理解,everthing应至少与keyDurability
和stale
一起使用。
答案 0 :(得分:2)
有关更新视图的“问题”是,它只使用持久保存到磁盘的数据。 你可以使用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。 之后,触发视图将刷新数据。