This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from couchdb.schema import Document, View, IntegerField, TextField | |
from couchdb import Database | |
map_fun = """ | |
function(doc){ | |
emit(doc.name, doc.age); | |
} | |
""" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; CouchDB Configuration Settings | |
; Custom settings should be made in this file. They will override settings | |
; in default.ini, but unlike changes made to default.ini, this file won't be | |
; overwritten on server upgrade. | |
[CouchDB] | |
database_dir = /alternatepath | |
;MaximumDocumentSize=4294967296 ; bytes | |
NewerOlder