mod_pubsub: Comment on itemstore type
authorKim Alvefur <zash@zash.se>
Sun, 25 Oct 2020 15:23:36 +0100
changeset 11192 8a29e7206917
parent 11191 76e135fbca0f
child 11194 88ce53df44a9
mod_pubsub: Comment on itemstore type
plugins/mod_pubsub/mod_pubsub.lua
--- a/plugins/mod_pubsub/mod_pubsub.lua	Sun Oct 25 15:21:34 2020 +0100
+++ b/plugins/mod_pubsub/mod_pubsub.lua	Sun Oct 25 15:23:36 2020 +0100
@@ -42,7 +42,7 @@
 
 local node_store = module:open_store(module.name.."_nodes");
 
-local function create_simple_itemstore(node_config, node_name)
+local function create_simple_itemstore(node_config, node_name) --> util.cache like object
 	local driver = storagemanager.get_driver(module.host, "pubsub_data");
 	local archive = driver:open("pubsub_"..node_name, "archive");
 	return lib_pubsub.archive_itemstore(archive, node_config, nil, node_name);