最简单的方法是使用列表函数。但是,这相当于全扫描操作:
function(head, req){
var filter = function(key){
if (!req.query.q){
return key; // list all
}
if (!req.query.q.match('^[\d-]+$'){
return; // don't allow regex injections
}
var match = key.match('.*' + req.query.q + '.*');
if (match) return match[0];
}
start({'headers': {'Content-Type': 'text/plain'}});
var num = null;
while(row=getRow()){
num = filter(row.key);
if (num){
send(num + '\n');
}
}
}
还要定义为联系人发送电话号码的视图:
function(doc){
if(doc.type == 'contact'){emit(doc.phone_num, null)}
}
并使用仅发出联系人的视图进行调用,例如:/db/_design/contacts/_list/search/phone?q=23
最快的方法是使用couchdb-lucene。
首先,创建索引 ddoc:
{
"_id":"_design/contacts",
"fulltext": {
"by_phone": {
"index":"function(doc) { var ret=new Document(); ret.add(doc.phone_num); return ret }"
}
}
}
并像这样查询http://localhost:5984/db/_fti/_design/contacts/by_phone?q=23