couchdb multi language documents
We are considering of using CouchDB for our Systems now. Anybody knows there is a function or framework in CouchDB supports handling different 开发者_JAVA技巧languages of the the same document?
If your functions fall out of UTF-8, then you probably want to attach them to documents as attachments. That way you can also easily keep multiple translations associated with the same document. For example, have a document that holds the meta data and then an attachment for each language. Keep the attachment names standardized - ie., by en_US or whatever - and you can easily check to see if you have the given translation.
CouchDB documents are Unicode text using UTF-8, so all languages supported by Unicode are supported.
wikipedia helps understand couchdb's concept of document : from their CouchDB page you can , you then find link text .
精彩评论