3

Cloudant提供托管的 CouchDB,具有免费的入门级别,每月允许 6GB 的 IO。适合学习 CouchDB 的开发人员。

由于 CouchDB 允许在 Javascript 中指定 map/reduce 函数,因此通过 Javascript 连接到它可能是有意义的,在 Classic ASP 中运行。

可能的?

4

1 回答 1

2

是的,为什么不?

Cloudant 可通过 HTTP/REST 访问。那里没什么特别的。

ASP Classic / Javascript 可以使用 MSXML2.ServerXMLHttp 发送请求,这与在客户端 Javascript 上使用 XMLHttpRequest 的方式非常相似。

好的是 CouchDB 的 Javascript 库,它不假定它在浏览器中运行,也不在 Node 中运行,因为 ASP Classic 都不是。这是一个开始:

https://gist.github.com/3016476

示例 ASP 代码:

    var creds = getCloudantCredentials("cloudantCreds.txt");
    var couch = new CouchDB(couchUrl);
    couch.connect(creds[0],creds[1]);
    var r = couch.listDbs();
    say("all dbs: " + JSON.stringify(r, null, 2));

    r = couch.view('dbname', 'baseViews', 'bywords',
                   { include_docs: false,
                     key: "whatever",
                     reduce:true} );
    say("view: " + JSON.stringify(r, null, 2));

这是您可以创建一组视图的方式:

function createViews(dbName, viewSet) {
    var r, doc,
        empty = function(doc) {
            if ( ! doc.observation || doc.observation === '') {
                emit(null, doc);
            }
        },
        bywordsMap = function(doc) {
            var tokens, re1,
                uniq = function(a) {
                    var o = {}, i = 0, L = a.length, r = [];
                    for (; i < L; i++) {
                        if (a[i] !== '' && a[i] !== ' ') {
                            o[a[i]] = a[i];
                        }
                    }
                    for (i in o) { r.push(o[i]); }
                    return r;
                };

            if ( doc.observation && doc.observation !== '') {
                tokens = uniq(doc.observation.split(/( +)|\./));
                if (tokens && tokens.length > 0) {
                    tokens.map(function(token) {
                        emit(token, 1);
                    });
                }
            }
        };

    viewSet = viewSet || 'baseViews';
    try {
        r = couch.deleteView(dbName, viewSet);
        doc = { views: { empty:   { map:stringRep(empty) },
                         bywords: { map:stringRep(bywordsMap)}}};
        r = couch.createView(dbName, viewSet, doc);
    }
    catch (exc1) {
        say ('createViews() failed: ' + JSON.stringify(exc1));
    }
}


function stringRep(fn) {
    return fn.toString()
        .replace(/[\s\t]*\/\/.*$/gm, '') // comments
        .replace(/\n */gm, ' ')
        .replace(/\r */gm, ' ')
        .replace(/\{ +/gm, '{')
        .replace(/ +\}/gm, '}');
}
于 2012-06-29T07:34:21.373 回答