我开始研究Couchbase和MongoDB,决定在社交网络上实现,但缺少基于sidebase的文档几乎让我放弃。
几乎所有我必须猜测的东西,因为文档很差,并且更容易在PHP SDK 2.0和以前的版本之间混淆。有很多文档,但有关较旧的sdk版本。
http://docs.couchbase.com/sdk-api/couchbase-php-client-2.0.2/index.html
现在流出后,我的问题。
我有这段代码,并创建了必要的视图:
$cb = CouchbaseViewQuery::from('dev_testimonials', 'by_uid')->key($uid)->limit($max)->skip($inicio);
它按预期工作,除了我需要按升序或降序排序结果,但我找不到任何关于它的文档。我认为 - >降序(真)应该做的但不起作用。不存在。
所有关于CouchbaseViewQuery上的排序的API参考都是一个常量列表:
UPDATE_BEFORE,UPDATE_NONE,UPDATE_AFTER,ORDER_ASCENDING,ORDER_DESCENDING
但是没有关于如何以及在何处使用它们的解释。
你可以帮忙吗?感谢。答案 0 :(得分:1)
您需要使用的函数是order()
,它接受以下两个常量之一:
在php中,所有class常量都是公开可见的。要访问常量,可以使用以下代码:CouchbaseViewQuery::ORDER_ASCENDING
或CouchbaseViewQuery::ORDER_DESCENDING
。
以下是使用Couchbase Server附带的Beer-sample数据的代码示例。
<?php
// Connect to Couchbase Server
$cluster = new CouchbaseCluster('http://127.0.0.1:8091');
$bucket = $cluster->openBucket('beer-sample');
$query = CouchbaseViewQuery::from('beer', 'by_location')->skip(6)->limit(2)->reduce(false)->order(CouchbaseViewQuery::ORDER_ASCENDING);
$results = $bucket->query($query);
foreach($results['rows'] as $row) {
var_dump($row['key']);
}
echo "Reversing the order\n";
$query = CouchbaseViewQuery::from('beer', 'by_location')->skip(6)->limit(2)->reduce(false)->order(CouchbaseViewQuery::ORDER_DESCENDING);
$results = $bucket->query($query);
foreach($results['rows'] as $row) {
var_dump($row['key']);
}
以下是上述代码的输出:
array(3) {
[0]=>
string(9) "Australia"
[1]=>
string(15) "New South Wales"
[2]=>
string(6) "Sydney"
}
array(3) {
[0]=>
string(9) "Australia"
[1]=>
string(15) "New South Wales"
[2]=>
string(6) "Sydney"
}
Reversing the order
array(3) {
[0]=>
string(13) "United States"
[1]=>
string(7) "Wyoming"
[2]=>
string(8) "Cheyenne"
}
array(3) {
[0]=>
string(13) "United States"
[1]=>
string(7) "Wyoming"
[2]=>
string(6) "Casper"
}