1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-25 05:16:37 +02:00
Files
unrealircd/include
Bram Matthys c0a46abd60 ModData API: add ModDataInfo .priority item and use it to speed up
things by making the keys with the most lookups first, e.g. "reputation",
"geoip", "certfp". This order is based on actual lookup counts during a
quick test with 250 clones doing some typical IRC traffic.

Key:		Lookups:	Position before:	After split:	After split+order:
"reputation"	20362		37			14		1
"geoip"		10555		44			15		2
"certfp"	9264		23			8		3
"webirc"	7407		27			10		4
"websocket"	7110		55			19		5

We could also consider going for a hash table, but this may be "good enough" for now.
2025-09-29 16:50:44 +02:00
..
2025-09-14 14:57:43 +02:00
2000-02-28 22:45:44 +00:00
2004-05-13 16:39:23 +00:00
2025-07-13 11:39:00 +02:00