annotate mod_measure_registration/mod_measure_registration.lua @ 5536:96dec7681af8

mod_firewall: Update user marks to store instantly via map store The original approach was to keep marks in memory only, and persist them at shutdown. That saves I/O, at the cost of potentially losing marks on an unclean shutdown. This change persists marks instantly, which may have some performance overhead but should be more "correct". It also splits the marking/unmarking into an event which may be watched or even fired by other modules.
author Matthew Wild <mwild1@gmail.com>
date Thu, 08 Jun 2023 16:20:42 +0100
parents 32d9d155a9b9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3951
32d9d155a9b9 mod_measure_registration: new module
Maxime “pep” Buquet <pep@bouah.net>
parents:
diff changeset
1 local count_registering = module:measure("user_registering", "rate");
32d9d155a9b9 mod_measure_registration: new module
Maxime “pep” Buquet <pep@bouah.net>
parents:
diff changeset
2 local count_registered = module:measure("user_registered", "rate");
32d9d155a9b9 mod_measure_registration: new module
Maxime “pep” Buquet <pep@bouah.net>
parents:
diff changeset
3
32d9d155a9b9 mod_measure_registration: new module
Maxime “pep” Buquet <pep@bouah.net>
parents:
diff changeset
4 module:hook("user-registering", function ()
32d9d155a9b9 mod_measure_registration: new module
Maxime “pep” Buquet <pep@bouah.net>
parents:
diff changeset
5 count_registering();
32d9d155a9b9 mod_measure_registration: new module
Maxime “pep” Buquet <pep@bouah.net>
parents:
diff changeset
6 end);
32d9d155a9b9 mod_measure_registration: new module
Maxime “pep” Buquet <pep@bouah.net>
parents:
diff changeset
7
32d9d155a9b9 mod_measure_registration: new module
Maxime “pep” Buquet <pep@bouah.net>
parents:
diff changeset
8 module:hook("user-registered", function ()
32d9d155a9b9 mod_measure_registration: new module
Maxime “pep” Buquet <pep@bouah.net>
parents:
diff changeset
9 count_registered();
32d9d155a9b9 mod_measure_registration: new module
Maxime “pep” Buquet <pep@bouah.net>
parents:
diff changeset
10 end);