plugins/mod_storage_memory.lua
changeset 11281 1256f32f21b6
parent 11278 ecbfde402364
child 12981 74b9e05af71e
--- a/plugins/mod_storage_memory.lua	Tue Jan 12 18:03:40 2021 +0100
+++ b/plugins/mod_storage_memory.lua	Tue Jan 12 18:06:33 2021 +0100
@@ -4,6 +4,7 @@
 local st = require "util.stanza";
 local is_stanza = st.is_stanza or function (s) return getmetatable(s) == st.stanza_mt end
 local new_id = require "util.id".medium;
+local set = require "util.set";
 
 local auto_purge_enabled = module:get_option_boolean("storage_memory_temporary", false);
 local auto_purge_stores = module:get_option_set("storage_memory_temporary_stores", {});
@@ -58,6 +59,7 @@
 	quota = archive_item_limit;
 	truncate = true;
 	full_id_range = true;
+	ids = true;
 };
 
 function archive_store:append(username, key, value, when, with)
@@ -110,6 +112,12 @@
 				return item.key == query.key;
 			end);
 		end
+		if query.ids then
+			local ids = set.new(query.ids);
+			items:filter(function (item)
+				return ids:contains(item.key);
+			end);
+		end
 		if query.with then
 			items:filter(function (item)
 				return item.with == query.with;