Mercurial > prosody-modules
comparison mod_mam/README.markdown @ 1976:cd36e5bf00b3
Various READMEs: Update to reflect rename of mod_storage_sql2 → mod_storage_sql
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Thu, 17 Dec 2015 16:48:11 +0100 |
parents | 6234e67ebe7a |
children | b91f27f21666 |
comparison
equal
deleted
inserted
replaced
1975:bdd3e3bfc219 | 1976:cd36e5bf00b3 |
---|---|
39 | 39 |
40 mod\_mam uses the store "archive2"[^1]. See [Prosodys data storage | 40 mod\_mam uses the store "archive2"[^1]. See [Prosodys data storage |
41 documentation](https://prosody.im/doc/storage) for information on how to | 41 documentation](https://prosody.im/doc/storage) for information on how to |
42 configure storage. | 42 configure storage. |
43 | 43 |
44 For example, to use mod\_storage\_sql2[^2]: | 44 For example, to use mod\_storage\_sql: |
45 | 45 |
46 ``` {.lua} | 46 ``` {.lua} |
47 storage = { | 47 storage = { |
48 archive2 = "sql2"; | 48 archive2 = "sql"; |
49 } | 49 } |
50 ``` | 50 ``` |
51 | 51 |
52 Query size limits | 52 Query size limits |
53 ----------------- | 53 ----------------- |
83 Compatibility | 83 Compatibility |
84 ============= | 84 ============= |
85 | 85 |
86 ------- --------------- | 86 ------- --------------- |
87 trunk Works | 87 trunk Works |
88 0.10 Works [^3] | 88 0.10 Works [^2] |
89 0.9 Unsupported | 89 0.9 Unsupported |
90 0.8 Does not work | 90 0.8 Does not work |
91 ------- --------------- | 91 ------- --------------- |
92 | 92 |
93 [^1]: Might be changed to "mam" at some point | 93 [^1]: Might be changed to "mam" at some point |
94 | 94 |
95 [^2]: mod\_storage\_sql2 will replace mod\_storage\_sql at some point | 95 [^2]: requires a storage driver with archive support, eg |
96 | 96 mod\_storage\_sql in 0.10 |
97 [^3]: requires a storage driver with archive support, eg | |
98 mod\_storage\_sql2 in 0.10 |