Mercurial > prosody-modules
comparison mod_couchdb/README.wiki @ 1782:29f3d6b7ad16
Import wiki pages
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 24 Aug 2015 16:43:56 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1781:12ac88940fe3 | 1782:29f3d6b7ad16 |
---|---|
1 #summary A CouchDB backend for Prosody | |
2 #labels Stage-Alpha,Type-Storage | |
3 | |
4 _*Note:* This module needs updating to the 0.8 storage module API._ | |
5 | |
6 = Introduction = | |
7 | |
8 This is an experimental Prosody backend for CouchDB. | |
9 | |
10 = Configuration = | |
11 In your config file, under the relevant host, add: | |
12 {{{ | |
13 datastore = "couchdb"; | |
14 couchdb_url = "http://127.0.0.1:5984/database-name"; | |
15 }}} | |
16 | |
17 = Compatibility = | |
18 | |
19 This module was developed as a prototype during development of the storage provider API in Prosody 0.8. The final storage provider API is different, so this module needs updates to work. | |
20 | |
21 = Quirks = | |
22 | |
23 This implementation is a work in progress. | |
24 | |
25 * The data stored in couchdb is limited to: account data, rosters, private XML and vCards |