Software /
code /
prosody-modules
Comparison
mod_mam/README.markdown @ 2023:98b4794b72e4
mod_mam: Include an in-memory fallback driver
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 19 Jan 2016 17:47:47 +0100 |
parent | 2022:77b9c7e5fd63 |
child | 2037:632aa9f49aed |
comparison
equal
deleted
inserted
replaced
2022:77b9c7e5fd63 | 2023:98b4794b72e4 |
---|---|
56 storage = { | 56 storage = { |
57 archive2 = "sql"; | 57 archive2 = "sql"; |
58 } | 58 } |
59 ``` | 59 ``` |
60 | 60 |
61 If no archive-capable storage backend can be opened then an in-memory | |
62 one will be used as fallback. | |
63 | |
61 Query size limits | 64 Query size limits |
62 ----------------- | 65 ----------------- |
63 | 66 |
64 max_archive_query_results = 20; | 67 max_archive_query_results = 20; |
65 | 68 |
114 Compatibility | 117 Compatibility |
115 ============= | 118 ============= |
116 | 119 |
117 ------- --------------- | 120 ------- --------------- |
118 trunk Works | 121 trunk Works |
119 0.10 Works [^2] | 122 0.10 Works |
120 0.9 Unsupported | 123 0.9 Works |
121 0.8 Does not work | 124 0.8 Does not work |
122 ------- --------------- | 125 ------- --------------- |
123 | 126 |
124 [^1]: Might be changed to "mam" at some point | 127 [^1]: Might be changed to "mam" at some point |
125 | 128 |
126 [^2]: requires a storage driver with archive support, eg | |
127 mod\_storage\_sql in 0.10 |