commit | ff7d190970a46722137fbc7a1a75466e8a544ae1 | [log] [tgz] |
---|---|---|
author | Klaus Trainer <klaus_trainer@posteo.de> | Wed Aug 26 13:40:40 2015 +0200 |
committer | Klaus Trainer <klaus_trainer@posteo.de> | Wed Aug 26 13:40:40 2015 +0200 |
tree | bcc77a1f9581a0910a3979f43cc95d749e48c129 | |
parent | 5896697a429af7f2705291d4812af101320b2ae3 [diff] |
Test with master branch from couchdb repo
couch_peruser is a CouchDB daemon that ensures that a private per-user database exists for each document in _users. These databases are writable only by the corresponding user. Databases are in the form:
userdb-{hex encoded username}
For example, the user bob
will have a database named userdb-626f62
.
The reason for hex encoding is that CouchDB usernames have no restrictions, but CouchDB databases have restrictions. Hex encoding the UTF-8 representation of the username is a transformation that's easy to correctly implement in just about any language, especially JavaScript and Erlang. Other encodings would be possible, but would require additional client and server-side code to support that encoding. This is the simplest scheme that is obviously correct.